#23185: c++解法(新手不足之處請見諒_


rayhsu1216 (108-34許洋睿)


#include <bits/stdc++.h>

using namespace std;

int main(int argc, char** argv) {

double v,r;

while(cin>>v>>r){

    cout<<fixed<<setprecision(4)<<v/r*1000<<endl;

return 0;

}