Untitled

Anonymous
c_cpp
10/14/2023 7:53 PM
260 B
31
Indexable
#include <iostream>
using namespace std;

int main()
{
    int a;
    cin >> a;
    if (a % 2 == 0 and a != 2) {
        cout << "YES";
    }
    else {
        cout << "NO";
    }
}
Editor is loading...