mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 10:10:40 +00:00
[Add] solved solutions
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user