#include<bits/stdc++.h>using namespace std;int main(){double a;int b;while(cin>>a>>b){double c=0;a=a*1000;c+=a/b;round(c*1000)/1000; //round會四捨五入 乘1000是 先左移3位 /1000再回到小數點位置cout<<fixed<<setprecision(4)<<c<<endl; //輸出小數點後4位}return 0;}