79119991

Date: 2024-10-23 23:34:43
Score: 1
Natty:
Report link
inp = input()
my_list = [int (i) for i in inp.split ()]
avg = sum(my_list) // len(my_list)
print(avg, max(my_list))

#use list comprehension to convert user input into a list then solve for the average and max

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: pinkflame