Question: n1 = int(input(Enter first number: )) n2 = int(input(Enter second number: )) n3 = int(input(Enter third number: )) smallest = n1 if n2 < smallest:

n1 = int(input("Enter first number: ")) n2 = int(input("Enter second number: ")) n3 = int(input("Enter third number: ")) smallest = n1 if n2 < smallest: smallest = n2 if n3 < smallest: smallest = n3 print("smallest number is", smallest) Now, how can you find if any are equal and print?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!