186k views
2 votes
If num1 and num2 are the same, print equal.

User Satoukum
by
5.1k points

1 Answer

6 votes

num1 = some value

num2 = some value

if num1 == num2:

print("equal")

You just need to provide the values for the numbers. I hope this helps!

User DharmaTurtle
by
5.5k points