mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 22:10:56 +00:00
21 lines
320 B
C++
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;
|
|
} |