A, B = map(int, input().split()) if A < B: print(2 * A) elif B < A: print(2 * B) else: print(A + B - 1)