Untitled
unknown
plain_text
2 years ago
150 B
9
Indexable
#include <iostream>
using namespace std;
int main()
{
int w;
cin >> w;
if (w % 2 == 0) {
cout << "yes";
}
else { cout << "no"; }
}Editor is loading...
#include <iostream>
using namespace std;
int main()
{
int w;
cin >> w;
if (w % 2 == 0) {
cout << "yes";
}
else { cout << "no"; }
}