2010 - 闰年判断
Time Limit : 1 秒
Memory Limit : 128 MB
输入一个年份,判断该年份是闰年还是平年,是闰年输出“leap year”,是平年输出“normal year”
Input
一行,一个整数n,表示某个年份
Output
一行,如果是闰年,屏幕上输出“leap year”,如果是平年,屏幕上输出“normal year”。
Examples
Input
2000
Output
leap year