#include<stdio.h> int main() { int a,b,c; while(~scanf("%d%d%d",&a,&b,&c)&&a&&b&&c) { printf("%.*lf\n",c,1.0*a/b); } return 0; }