| 2 | using namespace std; |
| 3 | |
| 4 | int main(int argc, char *argv[]) |
| 5 | { |
| 6 | |
| 7 | int n; |
| 8 | cin>>n; |
| 9 | if(n==2) cout<<"NO"<<endl; |
| 10 | else if(n%2==0) cout<<"YES"<<endl; |
| 11 | else cout<<"NO"<<endl; |
| 12 | |
| 13 | return 0; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected