#23773: _ans


ce5324 (伃)

學校 : 臺北市私立延平高級中學
編號 : 128513
來源 : [219.70.166.115]
最後登入時間 :
2021-06-06 21:44:53

#include <iostream>

using namespace std;

int main(){

int a,b,c;

cin>>a;

while(a--){

cin>>b>>c;

if(b>c)cout<<">"<<endl;

else if(b<c)cout<<"<"<<endl;

else cout<<"="<<endl;

}

 

}