#include <stdio.h>

int main(void) {
	char s[100];
	scanf("%s", s);
	puts(s);
	return 0;
}
