#include using namespace std; int main(){ long n, g, v; cin >> n >> g >> v; long tmp = n / 5; cout << (double)tmp *g / v << endl; return 0; }