8 lines
114 B
Python
8 lines
114 B
Python
sum_x = 0
|
|
|
|
for i in range(8):
|
|
x, _, _ = map(int, input().strip().split(" "))
|
|
sum_x += x
|
|
|
|
print(sum_x / 8)
|