Run ID:109673
提交时间:2025-02-10 13:49:25
#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; }