#include <stdio.h>
int main()
{
    char ch[1000];
    gets(ch);
    puts(ch);
    return 0;
}