#include <bits/stdc++.h>
using namespace std;

int main()
{
  int N, G, V;
  cin >> N >> G >> V;
  cout << fixed << setprecision(15) << N / 5 * 1.0 * G / V << endl;
}