Computer Science, asked by sukantisukantiswain, 2 months ago

programme to enter the two members and print the smallest among them.... plz tell me this answer... python ​

Answers

Answered by param200471
0

Answer:

n1 = int(input('Enter 1st number: '))

n2 = int(input('Enter 2nd number: '))

smallest = None

if (n1>n2):

smallest = n2

elif (n2>n1):

smallest = n1

print(smallest,'is the smallest number')

Similar questions