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