I have stored my online judge solutions of my own :)
#include<bits/stdc++.h> using namespace std; int main() { long long t, a , b; cin>>t; while(t--){ cin>>a>>b; if(a>b) cout<<">"<<endl; else if(a<b) cout<<"<"<<endl; else if(a==b) cout<<"="<<endl; } }
No comments:
Post a Comment