백준 25304 (python) ⭐

Grace Goh·2022년 9월 5일
0

백준 (python)

목록 보기
7/27
post-custom-banner
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이 정의되지 않았다는 내용으로,
변수 선언 없이 연산식에 사용하거나 출력하려는 경우 발생한다.

profile
Español, Inglés, Coreano y Python

0개의 댓글