#include <stdio.h>

int main() 
{
    char e[10000]; 
    scanf("%s",e); 
    getchar();
    printf("%s\n",e);
    return 0;
}