11172 - Relational Operator

#include <stdio.h> 

int main() 
  { 
  long Number,a,b; 
  scanf("%ld", &Number); 
  for(int i=1;i<=Number;i++) 
     { 
     scanf("%ld%ld", &a, &b); 
     if(a==b) 
       printf("=\n"); 
     if(a>b) 
       printf(">\n"); 
     if(a<b) 
       printf("<\n"); 
     } 
  } // End of main

Comments

Popular posts from this blog

371 - Ackermann Functions

Create many folder with one click