#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
inline void rd(double &x){
  scanf("%lf",&x);
}
inline void wt_L(char a){
  putchar_unlocked(a);
}
inline void wt_L(double x){
  printf("%.15f",x);
}
int main(){
  double A;
  double B;
  double C;
  rd(A);
  rd(B);
  rd(C);
  wt_L(A*C/B);
  wt_L('\n');
  return 0;
}
// cLay varsion 20191111-2

// --- original code ---
// {
//   double A, B, C;
//   rd(A,B,C);
//   wt(A*C/B);
// }