#include <iostream>
using namespace std;
int main() {
int watermelon;
cin >> watermelon;
if(watermelon == 2) {
cout << "NO" << endl;
}
else if(watermelon%2==0) { // even no;
cout << "YES" << endl;
}else { // odd no.
cout << "NO" << endl;
}
return 0;
}
No comments:
Post a Comment