Run ID:145136
提交时间:2026-01-25 08:59:25
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(year%100!=0 && year%4==0|| year%400==0){ cout<<"leap year"; }else { cout<<"not leap year"; } return 0; }