竞赛
考级
a=int(input()) if a%4000 or (a%100!=0 and a%40): print('Yes') else: print('No')
ent-IMR44795
#include<bits/stdc++.h> using namespace std; int main(){ int x; cin>>x; if(x%40&&x%100!=0||x%4000){ cout<<"Yes"; } else{ cout<<"No"; } return 0; }
猫四月