Showing posts with label UVa 10970 - Big Chocolate. Show all posts
Showing posts with label UVa 10970 - Big Chocolate. Show all posts

Tuesday, November 3, 2015

UVa 10970 - Big Chocolate

// UVa 10970 - Big Chocolate
#include <iostream>
using namespace std;

int main() {
	long long unsigned a, b;
	while (cin >> a >> b) {
		cout << a * b - 1 << endl;
	}
	return 0;
}