A, B = map(int, input().split()) N = A + B if A > B: A, B = B, A print(min(N - 1, 2 * A))