#include <stdio.h> typedef struct{ int month; int day; }date; int main () { date A; scanf("%d,%d",&A.month,&A.day); printf("%d",A.month); return 0; }