Computer Science, asked by bhumikadeep, 3 months ago

WAP to enter three numbers and check and print the smallest number​

Answers

Answered by ajmeribegam4811
3

Explanation:

Python Program

a = int(input('Enter first number : ')) b = int(input('Enter second number : ')) c = int(input('Enter third number : ')) smallest = 0 if a < b and a < c : smallest = a if b < a and b < c : smallest = b if c < a and c < b : smallest = c print(smallest, "is the smallest of three

Similar questions