1389H.cpp 179 B

12345678910111213
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int n;
  5. cin >> n;
  6. if(n & 1) {
  7. cout << "no";
  8. } else {
  9. cout << "yes";
  10. }
  11. return 0;
  12. }