Answer:
The program in Python is as follows:
nums = []
for i in range(3):
num = int(input())
nums.append(num)
nums.sort()
print(nums[0])
Step-by-step explanation:
This initiailizes a list
nums = []
This iteration is repeated for 3 inputs
for i in range(3):
This get input for each iteration
num = int(input())
The input is then appended to the list
nums.append(num)
Sort the list in ascending order
nums.sort()
Print the smallest
print(nums[0])