Untitled

Anonymous
plain_text
10/30/2022 12:30 PM
200 B
13
Indexable
#include <iostream>
using namespace std;
int main()
{
	int A;//5
	cin >> A;
	if (A % 2 == 0) cout << "Yes";
	if (A % 2 > 0) cout << "No";
}
Editor is loading...