#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
if(n%2==0){
if(n>50){
cout<<"yes"<<endl;
}
else {
cout<<"no"<<endl;
}
}
else {
cout<<"no"<<endl;
}
return 0;
}

京公网安备 11010502036488号