#include <stdio.h> int main() { int a, b; scanf("%d",&a); if(a>50 && a%2==0) { printf("yes"); } else { printf("no"); } return 0; }