Problem4506--闰年的判定

4506: 闰年的判定

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

给定一个整数 lns="http://www.w3.org/1998/Math/MathML">y 表示某个年份,请判定 lns="http://www.w3.org/1998/Math/MathML">y 年是否为闰年。闰年分普通闰年与世纪闰年:

  • 普通闰年是 lns="http://www.w3.org/1998/Math/MathML">4 的倍数,但不是 lns="http://www.w3.org/1998/Math/MathML">100 的倍数;
  • 世纪闰年是 lns="http://www.w3.org/1998/Math/MathML">400 的倍数。

Input

  • 单个整数:表示 lns="http://www.w3.org/1998/Math/MathML">y




Output

  • 若是闰年,输出 Leap year
  • 若不是闰年,输出 Common year

Sample Input Copy

2020

Sample Output Copy

Leap year

Source/Category