#!/bin/python import sys n,m = raw_input().strip().split(' ') n,m = sorted([int(n),int(m)]) if n==1: print m-1 else: print (n-1) + n*(m-1)