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