문제 출처: https://www.acmicpc.net/problem/2490
Bronze 3
yut = [sum(list(map(int, input().split()))) for _ in range(3)]
for score in yut:
if score == 0:
print('D')
elif score == 1:
print('C')
elif score == 2:
print('B')
elif score == 3:
print('A')
elif score == 4:
print('E')
저렇게 한 번에.. 변수에 넣을 수 있다는 사실을 기억하자! 그것도 모르고 for문 3까지 한번 4까지 한번더 이렇게 돌리고 입력받았는데 출력이 이상해서 뭔가 싶었음