#32920: _ans


yp11151049@yphs.tp.edu.tw (901-26李文睿)


#include<bits/stdc++.h>
using namespace std;
int main(){
    double v,r;
    while(cin>>v>>r){
        cout<<fixed<<setprecision(4)<<v/r*1000<<endl;
    }
}