Created
July 18, 2020 19:15
-
-
Save Thiago4532/4dab22efcd80a00792f46c4f7386cfb0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <bits/stdc++.h> | |
using namespace std; | |
int main() { | |
int n; | |
cin >> n; | |
if (n >= 2 && n % 2 == 0) cout << "YES\n"; | |
else cout << "NO\n"; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment