#include <stdio.h>

int main(void) {
	char txt[10];
	scanf("%s", &txt);
	printf("%s", txt);
}

//https://pt.stackoverflow.com/q/251918/101