Thursday, May 31, 2018

UVA - 11172 .cpp file

#include<bits/stdc++.h>
using namespace std;

int main()
{

    int n;
    cin>>n;
    int a,b;
    for(int i=0; i<n; i++)
    {
        cin>>a>>b;
        if(a<b) cout<<"<"<<endl;
        else if(a>b) cout<<">"<<endl;
        else cout<<"="<<endl;
    }
    return 0;
}

No comments:

Post a Comment