#include <stdio.h>

int main() {
	char s[10000];
	scanf("%s", &s);
	printf("%s", s);
	return 0;
}