#18763: 為甚麼測資一直WA 甚至顯示第一行有誤...???求救!


JIA_Yeeeeee (Jia_Y)


#include<iostream>
using namespace std;
int main(){
int y;
while(cin>>y){


if(y%4==0)
{
if(y%100==0&&y%400!=0){
cout<<"平年";
}
else{
cout<<"閏年";
}
}
else{
cout<<"平年";
}
}
return 0;

}