#include using namespace std; int main(){ cout << fixed << setprecision(20); int T, S, D; cin >> T >> S >> D; cout << (double) D / S << endl; }