Untitled

mail@pastecode.io avatar
unknown
c_cpp
a year ago
211 B
0
Indexable
Never
#include <iostream>
using namespace std;
int main(){
	int A, B;
	cin >> A >> B;
	if (A < B)
		cout << "<";
	else
		if (A > B)
			cout << ">";
		else
			if (A = B)
				cout << "=";
	return 0;

	
}