#13382: 幫我看一下哪裡錯,一直WA


mo724@kimo.com (賴姿潔)


#include <iostream>
#include <cmath>

using namespace std;

int main(){
int year;


cin >> year;

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