#include int main(void) { int x; scanf("%d", &x); if(x == 0 || x == 4 || x == 10){ printf("Yes\n"); } else{ printf("No\n"); } return 0; }