import std.stdio; void main() { int A, B, C; readf("%d %d %d", &A, &B, &C); writef("%.15f\n", cast(double)A * C / B); }