A,B,C,D=map(int,input().split()) if (abs(C-A)==0) or (abs(D-B)==0) or (abs(C-A)+abs(D-B)<=3):print(1) else:print(2)