Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

watermelon codeforces solution

#include<iostream>
using namespace std;
int main()
{
    int s;
    cin >> s;
    if(s % 2 == 0 && s > 2)
        cout << "YES" << endl;
    else
        cout << "NO" << endl;
    return 0;
}
 
PREVIOUS NEXT
Tagged: #watermelon #codeforces #solution
ADD COMMENT
Topic
Name
2+2 =