#54418: 不知道怎麼解的答案


yp11452067@yphs.tp.edu.tw (703-06林睿妤)


#include <iostream>
using namespace std;
int main()
{
int b;
int c;
int d;
cin>>b;
for(int a=0; a<b; a=a+1)
{
while(cin>>c>>d)
{
if(c>d)
{
cout<<">";
}
else if(c<d)
{
cout<<"<";
}
else
{
cout<<"=";
}
cout<<"\n";
}
 
       
}
return 0;
}