Who is Taller! Solution || Codechef Starters - 36

      

Who is Taller! Solution 

Codechef Starters - 36
Problem Code : TALLER 

Solution :

#include <bits/stdc++.h>
#define ll long long int
using namespace std;

int main()
{
    ll t = 1;
    cin >> t;
    while (t--)
    {
        ll n, m;
        cin >> n >> m;
        if (n > m)
        {
            cout << "A\n";
        }
        else
        {
            cout << "B\n";
        }
    }
}

Comments