-Code
a1, b1, c1 = map(int, input().split())
a2, b2, c2 = map(int, input().split())
total1, total2 = a1 + b1 * 2 + c1 * 3, a2 + b2 * 2 + c2 * 3
if total1 > total2:
print(1)
elif total1 < total2:
print(2)
else:
print(0)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 10410번 Eligibility (0) | 2024.09.19 |
---|---|
[백준/파이썬] 20216번 Ducky Debugging (0) | 2024.09.18 |
[백준/파이썬] 32314번 Christmas Tree Adapter (0) | 2024.09.17 |
[백준/파이썬] 9161번 Sir Bedavere’s Bogus Division Solutions (0) | 2024.09.15 |
[백준/파이썬] 32209번 다음 달에 봐요 (1) | 2024.09.14 |