#include<stdio.h>
#define LEN 100                     
int main()
{
char str[LEN];
fgets(stdin, LEN, stdin);
puts(str);
}