#include<bits/stdc++.h> int main() { char a; int b; float c; scanf("%c%d%f",&a,&b,&c); printf("%c %d %.6f",a,b,c);  ...