Problem Link
Solution :-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
/*------------------------------------------------*/ //Problem Setter: Shahriar Manzoor //Uva Problem No: 11172 //Problem Name : Relational Operators //Type : Ad hoc //Author : Shipu Ahamed //University : BUBT //E-mail : shipuahamed01@gmail.com /*--------------------------------------------*/ #include<stdio.h> int main() { int a,b,t; scanf("%d",&t); while(t--) { scanf("%d %d",&a,&b); if(a<b) printf("<n"); else if(a>b) printf(">n"); else printf("=n"); } return 0; } |