#include<cstdio>
int main() {
  int a;
  scanf("%d",&a);
  if(a%2||a==2) printf("NO, you can't divide the watermelon into two even parts.");
  else printf("YES, you can divide the watermelon into two even parts.");
}