#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; }