Skip to content

Instantly share code, notes, and snippets.

@shohan4556
Created January 23, 2015 16:23
Show Gist options
  • Select an option

  • Save shohan4556/631f6638962ea6fd7f53 to your computer and use it in GitHub Desktop.

Select an option

Save shohan4556/631f6638962ea6fd7f53 to your computer and use it in GitHub Desktop.
uva 11172
/// Author : Md. Shohanur Rahaman
/// Uva --11171
#include<stdio.h>
int main()
{
int long tc,a,b;
scanf("%ld",&tc);
while(tc--){
scanf("%ld %ld",&a,&b);
if(a>b)
printf(">\n");
else if(a<b)
printf("<\n");
else
printf("=\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment