4506: 闰年的判定
[Creator : ]
Description
给定一个整数 表示某个年份,请判定 年是否为闰年。闰年分普通闰年与世纪闰年:
- 普通闰年是 的倍数,但不是 的倍数;
- 世纪闰年是 的倍数。
Input
- 单个整数:表示 。
Output
-
若是闰年,输出
Leap year; -
若不是闰年,输出
Common year;
Sample Input Copy
2020
Sample Output Copy
Leap year