#include<stdio.h> int main() { int a,b; float c; scanf("%f %f",&a,&b); printf("%8.3f",(float)a/b); return 0; }