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