#include <iostream>
using namespace std;

int main() {
	char c;
	int a;
	float f;
	scanf("%c%d%f", &c, &a, &f);
	printf("%c %d %f", c, a, f);
}