Run ID:1981
提交时间:2023-12-03 10:00:16
#include<iostream> using namespace std; int main(){ int y; cin>>y; if(y%400==0||y%4==0&&y%100!=0) cout<<y<<"Yes"<<endl; else cout<<y<<"No"<<endl; return 0; }