Advertisement
Md_hosen_zisad

conc

Aug 10th, 2017
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1.  
  2. #include<stdio.h>
  3. int main()
  4. {
  5.     int n,i,a,b;
  6.     scanf("%d",&n);
  7.     for(i = 1;i<=n;i++)
  8.     {scanf("%d %d",&a,&b);
  9.     if(a<b)
  10.     printf("<\n");
  11.     else if(a>b)
  12.     printf(">\n");
  13.      else if(a==b)
  14.     printf("=\n");
  15.     }
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement