leap year by akrwkd

main(){int i;for(;scanf("%d",&i)>0;printf("%d is%s a leap year.\n",i,i&3|!(i%25)&&i&15?" not":""));}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page