We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28c444 commit e756c10Copy full SHA for e756c10
Codechef solutions/(CODECHEF)CHOPRT.cpp
@@ -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