import itertools A,B = map(int,input().split()) if A == B: print(A*2 + 1) else: print(min(A,B) * 2)