eolymp
bolt
Try our new interface for solving problems
Problems

Cheese for Anfisa - 2

published at 4/23/24, 8:33:37 pm

include <bits/stdc++.h>

using namespace std;

int main()

{

long long a, b, c;
cin >> a >> b >> c;
cout << (a * b * c - 1);

}