Run ID:119579
提交时间:2025-05-17 19:11:33
#include<iostream> #include<cmath> using namespace std; int main(){ int c; cin>>c; if(c%400==0){ if(c%4==0) cout<<c<<"Yes"; }else{ cout<<c<<"No"; } }