#include <stdio.h>
int main()
{
	int x=0;
	float y=0;
	scanf("%d",&x);
	printf("%d\n",x);
	scanf("%f",&y);
	printf("%f\n",y);
	return 0;
}