行数短小……
#include<iostream>
using namespace std;
int main(){
float y;
cin>>y;
if(y%4==0&&y%100!=0||y%400==0) cout<<"閏年";
else cout<<"平年";
return 0;
}