Run ID:132965
提交时间:2025-10-12 18:03:27
#include<bits/stdc++.h> using namespace std; int main(){ int year,t; cin>>year; cin<<t; if((year%4==0 && year%100!=0)||year%400==0){ cout<<"Yes"; } else{ cout<<"No"; } return 0; }