# include<bits/stdc++.h> using namespace std; int main(){ double a,b,c,d; scanf("%lf%lf",&a,&b,&c); c=a/b; printf("%.2lf",c); return 0; }