Skip to content

Instantly share code, notes, and snippets.

@Thiago4532
Created July 18, 2020 19:15
Show Gist options
  • Save Thiago4532/4dab22efcd80a00792f46c4f7386cfb0 to your computer and use it in GitHub Desktop.
Save Thiago4532/4dab22efcd80a00792f46c4f7386cfb0 to your computer and use it in GitHub Desktop.
#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