Problem2175--判断闰年

2175: 判断闰年

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 258  Solved: 163
[Status] [Submit] [Creator:]

Description

输入一个年份,判断该年是不是闰年。

Input

输入一个整数(在 0 ~ 9999 之间),表示年份。

Output

如果该年是闰年,输出 "yes";否则,输出 "no"。

Sample Input Copy

【样例输入1】
2022
【样例输出1】
no
【样例输入2】
2024
【样例输出2】
yes
【样例输入3】
2000
【样例输出3】
yes
【样例输入4】
2100
【样例输出4】
no

Source/Category

 python