Files
codeforces/cpp/4A.cpp
T
2023-03-02 20:58:03 +07:00

19 lines
214 B
C++

#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
if (n%2 || n <= 2)
{
cout << "NO" << endl;
}
else
{
cout << "YES" << endl;
}
return 0;
}