题目 思路 找规律… … … … . … 代码 #include <cstdio> #include <iostream> #include <algorithm> using namespace std; #define LL long long LL a,b; int main() { // freopen("math.in","r",stdin); // freopen("math.out","w",stdout); scanf("%lld%lld",&a,&b); printf("%lld",a*b-a-b); return 0; }