def solve(): A,B=map(int,input().split()) return abs(A-B) #================================================== print(solve())