个人信息
知乎:蓝桥杯python组备赛指南
蓝桥杯笔记:https://mbd.pub/o/bread/ZpWbmJ9x
CSDN主页:蓝桥杯python组备赛指南
python代码
n,m=map(int,input().split())
print(n*m-n-m)
# ans=0
# def dfs(i,n,m):
# if i==0:return True
# if i>=m and dfs(i-m,n,m):
# return True
# if i>=n and dfs(i-n,n,m):
# return True
# else:
# return False
# for i in range(2,1001):
# if not dfs(i,n,m):
# ans=i
# print(ans)
# #打表找规律
# 3 2 1
# 3 5 7
# 3 7 11
# 3 8 13
#nm-n-m