Run ID:132966

提交时间:2025-10-12 18:04:26

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