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