Obama

Anonymous
c_cpp
10/12/2023 5:41 PM
316 B
23
Indexable
#include <iostream>
#include <string>
using namespace std;

int main() {
	int A, B;
	cin >> A >> B;
	if (A < B) {
		cout << "<";
	}
		if (A > B) {
			cout << ">";
		}
			if (A == B) {
				cout << "=";
			}
	return 0;
}
Editor is loading...