非常水直接接写代码
#include<bits/stdc++.h>
using namespace std;
int main(){
    int m;
    cin>>m;
    if(m%2==0&&m>50){
        cout<<"yes";
    }
    else{
        cout<<"no";
    }
    return 0;
}