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