백준

[1008] A/B

Jcoder 2017. 4. 21. 23:10


#include <stdio.h>
int main()
{
double A,B;
scanf("%lf %lf", &A, &B);
printf("%.9lf\n", A/B);
return 0;
}