Advertisement
ShafiulAzim

uva 11172

Jan 18th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include<iostream>
  2. #include<cstdio>
  3.  
  4. using namespace std;
  5. int main()
  6. {
  7.     int t,a,b,i;
  8.     //freopen("input.txt","r",stdin);
  9.     //freopen("output.txt","w",stdout);
  10.  
  11.     cin>>t;
  12.     for(i=1; i<=t; i++)
  13.     {
  14.         cin>>a>>b;
  15.         if(a>b)
  16.             cout<<">"<<endl;
  17.         else if(a<b)
  18.             cout<<"<"<<endl;
  19.         else
  20.             cout<<"="<<endl;
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement