본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#300 백준 파이썬 [2965] 캥거루 세마리

https://www.acmicpc.net/problem/2965

 

PYTHON CODE

A, B, C = map(int, input().split())
print(max(B-A, C-B) - 1)