mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
14 lines
230 B
C++
14 lines
230 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
int main(){
|
|
double a;
|
|
double b;
|
|
long long c;
|
|
cin >>a>>b>>c;
|
|
cout <<c<<endl;
|
|
cout <<fixed<<setprecision(2)<<b<<endl;
|
|
cout <<fixed<<setprecision(9)<<a;
|
|
return 0;
|
|
}
|