x, y = map(int,input().split()) x2, y2 = map(int,input().split()) if x2 == y2: print(max(x,y)+2) else: print(max(x,y))