#include <stdio.h> int main() { char a = 0; int b = 0; float c = 0.0f; scanf("%c\n %d\n %f\n",&a,&b,&c); printf("%c %d %.6f",a,b,c); return 0; }