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