fork download
  1. n=int(input())
  2. s=0
  3. for i in range(n):
  4. x=float(input())
  5. s=s+x
  6. sr=s/n
  7. print(sr)
Success #stdin #stdout 0.09s 14148KB
stdin
6
-10
7.5
8.5
3
2
4
stdout
2.5