Run ID:119578
提交时间:2025-05-17 19:10:59
#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"; } }