Please Fill out the Feedback Form for Code Radius

Chef And Operators : CHOPRT | CodeChef Solution

3 min read

Problem

Chef has just started Programming, he is in first year of Engineering. Chef is reading about Relational Operators.
Relational Operators are operators which check relatioship between two values. Given two numerical values A and B you need to help chef in finding the relationship between them that is,
First one is greater than second or, First one is less than second or, First and second one are equal.

Input Format

First line contains an integer T, which denotes the number of testcases. Each of the T lines contain two integers A and B.

Output Format

For each line of input produce one line of output. This line contains any one of the relational operators
'<' , '>' , '='.

Constraints

1 ≤ T ≤ 10000 1 ≤ A, B ≤ 1000000001

Sample

Input
3
10 20
20 10
10 10
Output
<
>
=

Explanation

In this example 1 as 10 is lesser than 20.

Solution

cpp
#include <iostream> using namespace std; // Solution from : Code Radius [ https://radiuscode.blogspot.com/ ] int main() { int t; cin>>t; while(t--){ int a,b; cin>>a>>b; if(a<b){ cout<<"<"<<endl; } else if(a>b){ cout<<">"<<endl; } else if(a==b){ cout<<"="<<endl; } } return 0; }

Please First Try to Solve Problem by Yourself.

You may like these posts

  • Problem Gru has not been in the limelight for a long time and is, therefore, planning something particularly nefarious. Frustrated by his minions' incapability which has kept him…
  • Problem Chef has just started Programming, he is in first year of Engineering. Chef is reading about Relational Operators.Relational Operators are operators which check relati…
  • Problem Write a program to obtain a number NN and increment its value by 1 if the number is divisible by 4 otherwise decrement its value by 1. Please Share this article... …
  • Problem In a Chess match "a + b", each player has a clock which shows a minutes at the start and whenever a player makes a move, b seconds are added to this player's clock. Ti…
  • Problem The purpose of this problem is to verify whether the method you are using to read input data is sufficiently fast to handle problems branded with the enormous Input/Ou…
  •  ProblemYou're given an integer N. Write a program to calculate the sum of all the digits of N. Please Share this article... Input Format The first line contains an intege…

Post a Comment