#includeint main(){int y,s=0; for(y=1996;y<=2015;y++) s+=365+(y%4==0&&y%100||y%400==0); printf("%d\n",s); return 0;}