Арубы

 avatar
unknown
c_cpp
a year ago
178 B
3
Indexable
#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;
}