PROGRAMMING:Output all leap years between 2000 and N years
A leap year is a year that can be divided by four and not by 100 or by 400.
2020, for example, is a leap year.
Requirement: input a year n after 2000 and output all leap years between 2000 and n.
###Input format:
Enter a year after 2000 (no judgment in the program, just pay attention to the input).
###Output format:
For leap years in the output range, a year number occupies a single line.
###Input example:
```in
two thousand and thirty-eight
```
###Output example:
```out
two thousand
two thousand and four
two thousand and eight
two thousand and twelve
two thousand and sixteen
two thousand and twenty
two thousand and twenty-four
two thousand and twenty-eight
two thousand and thirty-two
two thousand and thirty-six
```
answer:If there is no answer, please comment
2020, for example, is a leap year.
Requirement: input a year n after 2000 and output all leap years between 2000 and n.
###Input format:
Enter a year after 2000 (no judgment in the program, just pay attention to the input).
###Output format:
For leap years in the output range, a year number occupies a single line.
###Input example:
```in
two thousand and thirty-eight
```
###Output example:
```out
two thousand
two thousand and four
two thousand and eight
two thousand and twelve
two thousand and sixteen
two thousand and twenty
two thousand and twenty-four
two thousand and twenty-eight
two thousand and thirty-two
two thousand and thirty-six
```
answer:If there is no answer, please comment