#include <stdio.h>

int main() {
int a;
char c;
float f;
scanf("%c\n%d\n%f\n",&c,&a,&f);
printf("%c %d %f",c,a,f);

    return 0;
}