mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 10:12:55 +00:00
19 lines
214 B
C++
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;
|
|
}
|