10 lines
135 B
C++
10 lines
135 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
float a;
|
|
cin >> a;
|
|
printf("%.3f", a);
|
|
return 0;
|
|
} |