Run ID:109683

提交时间:2025-02-10 14:40:49

#include<bits/stdc++.h> using namespace std; int main(){ int year; cin>>year; if(year%400==0||year%4==0&&year%100!=0){ cout<<year<<" yes"; }else{ cout<<year<<" no"; } return 0; }