Error
|
|
---|---|
@Ibrahim Nash | 5761 |
@blackshadows | 5715 |
@akhayrutdinov | 5111 |
@mb1973 | 4989 |
@Quandray | 4944 |
@saiujwal13083 | 4506 |
@sanjay05 | 3762 |
@marius_valentin_dragoi | 3516 |
@sushant_a | 3459 |
@verma_ji | 3341 |
@KshamaGupta | 3318 |
Complete Leaderboard | |
|
|
@aroranayan999 | 1115 |
@bt8816103042 | 739 |
@thealchemist627 | 456 |
@dalwainazism125 | 453 |
@akashkale117 | 453 |
@shivanandp12345678910 | 453 |
@SherlockHolmes3 | 447 |
@codeantik | 446 |
@SHOAIBVIJAPURE | 430 |
@shalinibhataniya1097 | 408 |
@ShamaKhan1 | 392 |
Complete Leaderboard |
Given two numbers A and B and task is to check whether A is greater than or less than or equals to B.
Example 1:
Input: A = 2, B = 5 Output: 2 is less than 5 Explanation: The output is self- explanatory.
Example 2:
Input: A = 6, B = 3 Output: 6 is greater than 3 Explanation: The output is self- explanatory.
Your Task:
You don't need to read input or print anything. Your task is to complete the function compareNum() which takes two integers A and B, if
If A > B then print "A is greater than B" without quotes
If A < B then print "A is less than B" without quotes
if A = B then print "A is equals to B" without quotes.
Expected Time Complexity: O(1)
Expected Auxiliary Space: O(1)
Constraints:
1<=A<=10000
1<=B<=10000
We strongly recommend solving this problem on your own before viewing its editorial. Do you still want to view the editorial?
Yes