Run ID:8407

提交时间:2025-11-30 12:58:16

#include<iostream> using namespace std; int main(){ int t=0; while(cin>>t){ if(t%4==0 && t%100!=0 || t%400==0){ cout<<"yes"; }else{ cout<<"no"; } } return 0; }