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