+#include +int main() +{ +int year, multiple; + printf("What year in the 21st century? : "); + scanf("%d",&year); + int tens = (year%100); + int percent = (tens/4); + if (tens%4==0) + { + percent = (percent-1); + } + int result=(percent+tens); + for (multiple=0;multiple