python/2024-10-26-1.py

6 lines
84 B
Python

n=int(input())
sum=0
for i in range(n):
sum+=int(input())
print('%.2f'%(sum/n))