반응형

문제 설명

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


 

 

 

제출한 코드

n, m = map(int, input().split())

if n>=m:
    print(n-m)
else:
    print(m-n)

 

 

 

 

결과

 

 

 

후기

 

 

 

 

 

 
반응형

+ Recent posts