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