/in/foo.c: In function 'main':
/in/foo.c:6:2: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
scanf("%d%d%d",&a1,&a2,&a3);
^~~~~
/in/foo.c:6:2: warning: incompatible implicit declaration of built-in function 'scanf'
/in/foo.c:6:2: note: include '<stdio.h>' or provide a declaration of 'scanf'
/in/foo.c:39:2: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
printf("%d\n",sum);
^~~~~~
/in/foo.c:39:2: warning: incompatible implicit declaration of built-in function 'printf'
/in/foo.c:39:2: note: include '<stdio.h>' or provide a declaration of 'printf'
/in/foo.c: In function 'IsRun':
/in/foo.c:57:12: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
if (x%4==0&&x%100!=0||x%400==0)
~~~~~~^~~~~~~~~~