Advertisement
rengetsu

Codeforces_4A

Jul 18th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. //Codeforces Round 4A
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int w;
  7.     cin >> w;
  8.     if(w>3 && w%2==0){cout<<"YES";}
  9.     else{cout<<"NO";}
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement