#include using namespace std; #define MOD 1000000007 #define pb push_back #define mp make_pair #define all(c) (c).begin(),(c).end() #define sz(a) int((a).size()) #define F first #define S second #define rep(i, a, b) for(int i = a; i < b; ++i) #define per(i, a, b) for(int i = a; i >= b; --i) #define travel(c,itr) for(__typeof((c).begin()) itr=(c).begin();itr!=(c).end();itr++) #define INDEX(arr,ind) (lower_bound(all(arr),ind)-arr.begin()) typedef long long ll; typedef long double ld; typedef vector vi; typedef pair pii; typedef pair pli; typedef pair pll; typedef pair piii; typedef pair plll; typedef vector vpii; typedef vector vpiii; inline ll powmod(ll x, ll n, ll _mod){ ll res = 1; while (n){ if (n & 1)res = (res*x) % _mod; x = (x*x) % _mod; n >>= 1; } return res; } #define N 100005 ll n,m,ans; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n>>m; ans=n*m-1; cout<