#include <stdio.h>

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