MCPcopy Create free account
hub / github.com/acm-clan/algorithm-stone / main

Function main

user/codeforces/4A.Watermelon.cpp:4–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected