Relation between two numbers 2
This Program name is Relation between two numbers 2. Write a Python program to Relation between two numbers 2, it has two test cases
The below link contains Relation between two numbers 2 question, explanation and test cases
https://drive.google.com/file/d/1KhAb8euuuqtqoHSP0zqRb9Mojcj-iAx_/view?usp=sharing
We need exact output when the code was run
A=int(input())
B=int(input())
if A==B:
print("A==B")
elif A<B:
print("A<B")
elif A>B:
print("A>B")
Comments
Leave a comment