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