#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int A, B; cin >> A >> B; if (A == B) { cout << 2 * A - 1 << '\n'; } else { cout << 2 * min(A, B) << '\n'; } return 0; }