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