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