Files
2023-03-02 20:59:51 +07:00

21 lines
320 B
C++

#include <iostream>
using namespace std;
int main() {
int t;
long long a, b;
cin >> t;
while (t--)
{
cin >> a >> b;
if (a < b)
cout << "<";
else if (a > b)
cout << ">";
else
cout << "=";
cout << endl;
}
return 0;
}