Files
python/TangDou/AoSaiYiBenTong/YBT1026.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

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;
}