Skip to content

Commit e756c10

Browse files
Create (CODECHEF)CHOPRT.cpp
1 parent d28c444 commit e756c10

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
PROGRAM : CHOPRT (Chef And Operators)
3+
*/
4+
5+
#include<iostream>
6+
#define ll long long
7+
using namespace std;
8+
9+
int main()
10+
{
11+
ll t;
12+
cin>>t;
13+
while(t--)
14+
{
15+
ll a,b;
16+
cin>>a>>b;
17+
if(a>b)
18+
{
19+
cout<<">"<<endl;
20+
}
21+
else if(a<b)
22+
{
23+
cout<<"<"<<endl;
24+
}
25+
else
26+
{
27+
cout<<"="<<endl;
28+
}
29+
}
30+
return 0;
31+
}

0 commit comments

Comments
 (0)