Computer Science, asked by joker0228, 2 months ago

WAP to obtain three numbers from the user and print the largest and smaller number​

Answers

Answered by sambhavgautam6
0

a=int(input("enter the number ::"))

b=int(input("enter the number ::"))

c=int(input("enter the number ::"))

L1 = [a,b,c]

Largest= max(L1)

Smallest= min(L1)

print("LARGEST NUMBER :::",Largest)

print("SMALLEST NUMBER::",Smallest)

Similar questions