CodeChef::CHOPRT

#include <iostream>
using namespace std ;

int main(){
int t ;
cin >> t ;
while (t--){
long long int a,b ;
cin >> a >>b ;
if (a < b){
cout << '<' << '\n' ;
}
if (a > b){
cout << '>' << '\n' ;
}
if (a == b){
cout << '=' << '\n' ;
}
}
}

Comments

Popular posts from this blog

CodeChef::CSUB

How Recursion Works?

Atcoder Educational Dp contest :: C vacation