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