본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 33046번 Alea Iacta Est

by 현장 2024. 12. 29.

-Code

a, b = map(int, input().split())
c, d = map(int, input().split())

total = a + b + c + d
res = 0

for _ in range(total - 1):
    if res == 4:
        res = 1
        continue
    res += 1

print(res)