题意:把一块M x N的巧克力分成1 x 1的巧克力,最小需要多少刀(一刀只能切一块巧克力,1 <= M <= 300, 1 <= N <= 300)。
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=457&problem=1911
——>>想想。。。
#include <cstdio>using namespace std;int main()
{int M, N;while(scanf("%d%d", &M, &N) == 2){printf("%d\n", M * N - 1);}return 0;
}