#include #include using namespace std; int main(void) { double a, b; cin >> a >> b; cout << fixed << setprecision(50) << a / b << endl; return 0; }