Run ID:87436

提交时间:2024-08-10 11:02:02

#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if((n%4==0&&n%100!=0)||(n%400==0)) cout<<"leap year"; else cout<<"not leap year"; return 0; }