Answer:
The program in Python is as follows:
nums = []
for i in range(3):
num = int(input(""))
nums.append(num)
print(min(nums))
Step-by-step explanation:
This initializes a list of numbers
nums = []
This loop is repeated 3 times
for i in range(3):
For each repetition, this prompts the user for input
num = int(input(""))
This appends the input to the list
nums.append(num)
This gets the smallest of the three inputs using the min() function. The smallest is also printed
print(min(nums))