a,b,c = map(int,input().split()) d1 = abs(a-b) d2 = abs(b-c) d3 = abs(c-a) print(min(d1,d2,d3))