提交时间:2022-06-18 13:38:39
运行 ID: 41763
#include <bits/stdc++.h> using namespace std; int main () { double x, y, t; cin >> x >> y >> t; printf ("%.0lf", x * t / 10 * y - 1); return 0; }