#include<stdio.h>int main(void){int a,b;double c;scanf("%d%d",&a,&b);c=b/a;printf("%%.3lf\n",c);return 0;}
a,b改成double类型