#include using namespace std; int main(){ int n,m;cin >> n >> m; int d=min(n,m); cout << d*2+(max(m,n)-d)*2-1 << endl; }