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