没啥好说的,输入n,m,输出 n*m-1。。。
代码:
1 #include<iostream> 2 3 using namespace std; 4 5 int main() 6 { 7 int n, m; 8 while(cin >> n >> m) 9 cout << n*m-1<< endl; 10 return 0; 11 }