#include<stdio.h>
#include<string.h>
int main()
{
    int i,j;
    char str[1000];
    gets(str);
    puts(str);
    return 0;
}