In Python build a program that first accepts a single integer from the user that represents how many inputs to read. If the user enters 0 or a negative number, simply stop the program without providing any output.
If the user inputs a positive integer as the first input, the program should continue to read that many integers from input, and then print the maximum and minimum inputs provided by the user in a format similar to the following:
Maximum: 15 Minimum: 12
n = int(input())
if n > 0:
largest = None
smallest = None
for i in range(n):
num = int(input())
if largest is None or num > largest:
largest = num
if smallest is None or num < smallest:
smallest = num
print("Maximum:", largest)
print("Minimum:", smallest)

In Python build a program that first accepts a single integer from the user that represents...