Run ID:8408

提交时间:2025-11-30 13:00:03

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