import math X, Y = map(int, input().split()) r = (X**2 + Y**2) ** 0.5 print(int(r*2) + 1)