Write a pseudo-code to find the minimum among three given numbers in python
Answers
Answered by
1
Answer:
um1=int(input("Enter the first number: ")) #Take input from user for first number.
num2=int(input("Enter the second number: "))#Take input from user for second number.
num3=int(input("Enter the third number: ")) #Take input from user for third
Similar questions