#include<stdio.h>
int main()
{
    char x;
    int y;
    double z;
    scanf("%c %d %lf",&x,&y,&z);
    printf("%c %d %.6lf",x,y,z);
 return 0;
}