它把我瞬间征服了
#include<stdio.h> int main() { int n, m; while(scanf("%d%d",&m,&n) != EOF) printf("%d\n",n*m-1); return 0; }