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

[백준/파이썬] 25625번 샤틀버스

by 현장 2022. 9. 25.

-Code

x, y = map(int, input().split())
print(x + y if x > y else y - x)