0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-27 12:20:07 +00:00

11 lines
157 B
C++

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