3.11 LAB: Smallest number
Write a program whose inputs are three integers, and whose output is the smallest of the three values.
For example, if the input is:
7 15 3
the output is:
3
3.11.1: LAB: Smallest number
for i in range(3):
n = int(input())
input1.append(n)
input1.sort()
print(input1[0])