0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 12:40:07 +00:00
2021-07-15 19:03:18 +08:00

11 lines
168 B
C++

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