Run ID:13075
提交时间:2021-05-25 12:41:17
#include<bits/stdc++.h> using namespace std; int main() { int year; cin>>year; if((year%4==0&&year%100!=0)||year%400==0) cout<<"leap year"<<endl; else cout<<"not leap year"<<endl; return 0; }