Answers for "codeforces watermelon solution in java"

2

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;
}
Posted by: Guest on June-15-2021

Code answers related to "codeforces watermelon solution in java"

Browse Popular Code Answers by Language