Cometin'

BOJ-2420 - Python

2020-07-15 at Algorithm category

-2,000,000,000 ≤ N, M ≤ 2,000,000,000의 범위를 가진 두 수를 입력받고 두 수의 차이값을 출력하는 문제. n-m값에 abs함수를 이용하여 풀었다.

n, m = map(int, input().split())
print(abs(n - m))

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.