Run ID:119399
提交时间:2025-05-17 15:07:51
vv#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n% 400 == 0 || (n % 4 == 0 && n % 100 !=0)){ cout<<n<<"年份 yes"; }else{ cout<<n<<"年份 NO"; } return 0; }