document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5.  
  6. {
  7. int n;
  8. cin>>n;
  9. for(int i=0;i<n;i++){
  10. int a,b;
  11. cin>>a>>b;
  12. if(a>b){
  13. cout<<">"<<endl;
  14. }
  15. else if(a<b){
  16. cout<<"<"<<endl;
  17. }
  18. else{
  19. cout<<"="<<endl;
  20. }
  21.  
  22. }
  23. return 0;
  24.  
  25. }
');