#include using namespace std; int main() { int a, b; cin >> a >> b; double r = a / b; printf("%.50f", r); return 0; }