Chef And Operators | Codechef solution
Problem of Chef And Operators | Codechef solution:-
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 of Chef And Operators | Codechef solution
First line contains an integer T, which denotes the number of testcases. Each of the T lines contain two integers A and B.
Output
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
Example
Input:
3
10 20
20 10
10 10
Output:
<
>
=
Explanation
Example case 1. In this example 1 as 10 is lesser than 20.
Code:-
#include <iostream> using namespace std; int main() { int t; cin>>t; long int a,b; while(t--) { cin>>a>>b; if(a>b) cout<<">"<<endl; if(a<b) cout<<"<"<<endl; if(a==b) cout<<"="<<endl; } return 0; }
Recommended Post:
-
codechef problems:-
Wipro :-
- Update the booking ID | Wipro previous year question paper solution
- Pages in PDF
- Find the location id
- Find the odd digits
- Find the Product ID
Infytq :-
Key Points;-
Hackerrank:-
- Python : missing characters : hackerrank solution
- Python : string transformation | Hackerrank solution
- Active Traders certification test problem | Hackerrank Solution
- Usernames changes certification test problem | Hackerrank Solution
- string Representation of objects certification test hackerrank solution
- Average Function | hackerrank certification problem solution
C-tutorial:-
- Micros in C
- Pointer in c
- Function declaration
- Types of user define function
- return type of function
- 2D array
See more:-
- c program to convert specified days into years weeks and days
- Print Reverse Hollow Pyramid
- Update the booking ID | Wipro previous year question paper
- Pages in PDF | Wipro previous year question paper
- Sparse Matrix in data structure
- Find the location ID | Wipro previous year Coding question
- find the odd digits | Wipro Coding question
- Find the product id | Wipro Coding question
- Difference between static and dynamic memory allocation
- What is asymptotic Notation