Арубы

mail@pastecode.io avatar
unknown
c_cpp
a month ago
178 B
1
Indexable
Never
#include <iostream>
#include <string>
using namespace std;

int main()
{
	int a;
	cin >> a;
	if (a % 2 == 0 and a>2) cout << "Yes";
    else cout << "No";
	return 0;
}