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