X = int(input())
N = int(input())
total = 0
for i in range(N):
a, b = map(int, input().split())
c = a * b
total = total + c
if X == total:
print("Yes")
else:
print("No")
total = 0
이 굳이 필요한가? 싶어 안 썼더니 다음과 같은 에러가 발생했다.
NameError: name 'total' is not defined
변수 total이 정의되지 않았다는 내용으로,
변수 선언 없이 연산식에 사용하거나 출력하려는 경우 발생한다.