#include <iostream>

using namespace std;

int main()
{
    int num;
    cin >> num;
    if (num % 2 == 0 && num > 50) {
        cout << "yes";
    } else {
        cout << "no";
    }
    return 0;
}