#include <stdio.h>
int isLeapYear(int year) {
return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
}
void GetTheNext15LeapYears() {
int year = 2021, count = 0;
while (count < 15) {
if (isLeapYear(year)) {
count++;
printf("%d\n", year);
}
year++;
}
}
int main() {
GetTheNext15LeapYears();
}
/*
2024
2028
2032
2036
2040
2044
2048
2052
2056
2060
2064
2068
2072
2076
2080
*/