#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
#define ALL(A) A.begin(), A.end()

using namespace std;

typedef long long ll;
typedef pair<int, int> P;

int main()
{
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	ll n, m; cin >> n >> m;

	ll res = 0LL;
	if (n == 1LL || m == 1LL){
		if (n == 1LL){
			res = m - 1LL;
		}else{ // if (m == 1)
			res = n - 1LL;
		} // end if
	}else{
		res = n*m - 1LL;
	} // end if

	cout << res << endl;

	return 0;
}