본문 바로가기

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

#200 백준 파이썬 [2420] 사파리월드

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

 

 

#Solution

파이썬에서는 손쉽게 맞추는 문제

a, b = map(int, input().split())
print(abs(a - b))