#include int N; int main(){ scanf("%d",&N); if(N%400==0 || (N%100!=0 && N%4==0))puts("Yes"); else puts("No"); return 0; }