by CodeChum Admin
It's time to find out if something is true or false. Let's test your capabilities by creating a program that checks if two integers are equal!
Instructions:
Input
A line containing two integers separated by a space.
5·5
Output
The first line contains the two integers input.
The second line contains a string which is the result.
5·5
Equal
str1 = input()
str2 = input()
print(str1+" "+str2)
if str1 == str2:
print("Equal")
else:
print("Not Equal")
Comments
Leave a comment