Answer:
Answered below
Explanation:
#python program
#First get the number of inputs from user
num_inputs = int(input("Enter number of inputs:")
j = 0
sum =0
max = 0
while j < num_inputs:
num = int(input ("Enter numbers: ")
sum = sum + num
if num > max:
max = num
j++
#Compute the average
average = sum/num_inputs
print (average, max)