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