#include using namespace std; int a, b, c; int main() { cin >> a >> b >> c; printf("%.12Lf\n", 1.0L * (a / 5) * b / c); return 0; }