Untitled

Anonymous
plain_text
10/14/2023 5:29 PM
200 B
21
Indexable
#include <iostream>
using namespace std;

int main()
{
	int w;
	cin >> w;
	if (w % 2 == 0) {
		cout << "yes";
	}
	else { cout << "no"; }
	}
Editor is loading...