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