Untitled

Anonymous
plain_text
10/30/2022 12:22 PM
188 B
12
Indexable
#include <iostream>
using namespace std;
int main()
{
	int A;
	cin >> A;
	if (A > 10) cout << "yes";
	if (A < 10) cout << "no";
}
Editor is loading...