Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

a = input("Enter first number: ")

b = input("Enter the second number: ")

if a == b:

print ("Both numbers are equal")

else:

print ("Both numbers are not equal")


classmate1 = str (input("Enter name of first classmate: "))

classmate2 = str (input("Enter name of second classmate: "))

classmate3 = str (input("Enter name of third classmate: "))

print(classmate1)

print(classmate2)

print(classmate3)

You might also like