a, b = map(int, input().split()) ans = 2 * min(a, b) if a == b: ans -= 1 print(ans)