Run ID:119401

提交时间:2025-05-17 15:09:43

v#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; }