풀이
#include <iostream>
using namespace std;
int main(void) {
int t;
cin >> t;
for (int i = 0; i < t; i++) {
long a, b;
cin >> a >> b;
if (a == b) {
cout << "=" << endl;
}
else if (a > b) {
cout << ">" << endl;
}
else {
cout << "<" << endl;
}
}
return 0;
}
'알고리즘 트레이닝 > UVa' 카테고리의 다른 글
441 - Lotto (0) | 2019.11.06 |
---|---|
146 - ID Codes (0) | 2019.11.04 |
573 - The Snail (0) | 2019.11.02 |
11799 - Horror Dash (0) | 2019.11.02 |
11559 - Event Planning (0) | 2019.11.02 |