#include <stdio.h>

int main()
{
	struct book
	{
		char name;
		float price;
	};
	struct book b;
	scanf("%c %f",&b.name,&b.price);

	printf("%c %f",b.name,b.price);
	return 0;
}

/*linkfloat()
{
	float a=0,*b;
	b=&a; //cause emulator to be linked
	a=*b; //suppress the warning: variable not found
}*/