#include<iostream>
using namespace std;
int main(){
int x;
cin>>x;
if((x%4==0&&x%100!=0)||x%400==0)
cout<<"閏年";
else
cout<<"平年";
return 0;
}
#include
using namespace std;
int main(){
int x;
cin>>x;
if((x%4==0&&x%100!=0)||x%400==0)
cout<<"閏年";
else
cout<<"平年";
return 0;
}
while回圈+EOF