Answer:
The following are the program in the Python Programming Language.
#set variable and get input from user
num = int(input("Enter the number of the data set: "))
#print the following message
print("Enter the {} numbers:".format(num))
#set empty list type variable
lst = []
#set the for loop
for i in range(num):
#get the list type input from the user
n=int(input())
#add the input in the list
lst.append(n)
#store the minimum value in the variable
min_val = min(lst)
#print the minimum value of the list
print("The smallest value is:",min_val)
#print the following message
print("The normalized data set is:")
#set loop to print list
for x in lst:
print(x-min_val)
Explanation:
The following are the description of the program.