In: Computer Science
Program must be in Python
Write a program in Python whose inputs are three integers, and whose output is the smallest of the three values.
Input is
7
15
3
first = int(input()) second = int(input()) third = int(input()) if first <= second and first <= third: smallest = first elif second <= first and second <= third: smallest = second else: smallest = third print(smallest)