Run ID:109674
提交时间:2025-02-10 13:51:10
#include<bits/stdc++.h> using namespace std; int main(){ int y; cin>>y; if(y%4==0&&y%400==0){ cout<<y<<" Yes"; }else{ cout<<y<<" No"; } return 0; }