13 lines
211 B
C++
13 lines
211 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
char a;
|
|
int b;
|
|
float c;
|
|
double d;
|
|
cin >> a >> b >> c >> d;
|
|
printf("%c %d %.6f %.6lf", a, b, c, d);
|
|
return 0;
|
|
} |