Untitled

Anonymous
c_cpp
10/15/2023 8:16 AM
248 B
37
Indexable
#include <iostream>
using namespace std;
int main()
{
    int w;
    cin >> w;
    if (w % 2 == 0 & w>2)
        cout << "YES";
    else
        cout << "NO";
    return 0;
}
Editor is loading...