include<stdio.h>

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