Files
kattis/shatteredcake.py
2023-06-23 23:19:18 +02:00

10 lines
127 B
Python

w = int(input())
n = int(input())
s = 0
for _ in range(n):
x, y = map(int, input().split())
s += x * y
print(s // w)