3 lines
60 B
Python
3 lines
60 B
Python
A = list(map(int, input().split()))
|
|
print(abs(A[0] - A[1]))
|
A = list(map(int, input().split()))
|
|
print(abs(A[0] - A[1]))
|