判断闰年
You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.
说明
输入一个年份,要求判定它是不是闰年。判别闰年的条件是:能被4整除但不能被100整除的是闰年(如1992);能被4整除又能被400整除的是闰年(如2000),其他都不是闰年。
输入格式
一个数表示年份
输出格式
是闰年输出'yes' 不是输出'no'样例
1992
yes