Created
January 23, 2015 16:23
-
-
Save shohan4556/631f6638962ea6fd7f53 to your computer and use it in GitHub Desktop.
uva 11172
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// 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