#include #include using namespace std; int main() { double t, s, d; cin >> t >> s >> d; cout << fixed << setprecision(15) << d / s << endl; }