Untitled
unknown
c_cpp
2 years ago
185 B
28
Indexable
#include <iostream>
using namespace std;
int main()
{
int w;
cin >> w;
if (w % 2 == 0 & w>2)
cout << "YES";
else
cout << "NO";
return 0;
}Editor is loading...