Are Integers Created Equally?
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 two integers in one line.
Print the two integers in one line, separate them with a space.
Print a string message on a new line, "Equal" if both integers are equal
str1=input()
str2=input()
print(str1+"\\"+str2)
if str1==str2:
print("Equal")
else:
print("Not Equal"
Comments
Leave a comment