#include <stdio.h>

int main(void) {	
	char d[10];	
	scanf("%s",d);	
	printf("%s\n",d);
	return 0;
}