#include using namespace std; typedef long long LL; int main() { // 1. 入力情報取得. LL N, G, V; cin >> N >> G >> V; // 2. 瓦斯を充満させると? double ans = G * (N / 5) * 1.0 / V; // 3. 出力. cout << fixed; cout << setprecision(13) << ans << endl; return 0; }