#include #include int main(void){ int y,w,h; double x; std::cin >> y >> w >> h; x = (double)y/(double)w*(double)h; std::cout << std::setprecision(10) << x << std::endl; }