0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:25:24 +00:00
OI-codes/Luogu/problem/B2011/B2011.cpp

11 lines
168 B
C++
Raw Normal View History

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