Run ID:8406
提交时间:2025-11-30 12:55:49
#include<iostream> using namespace std; int main(){ int t=0; cin>>t; if(t%4==0 && t%100!=0 || t%400==0){ cout<<"yes"; }else{ cout<<"no"; } return 0; }