Run ID:144797
提交时间:2026-01-24 18:49:56
#include<bits/stdc++.h> using namespace std; int main(){ int a; scanf("%d", &a); if((a%4==0&&a%100!=0)||a%400==0)cout<<"leap year"<<endl; else cout<<"not leap year"<<endl; return 0; }