#include<stdio.h>
int main()
{
    char ch[]={0};
    scanf("%s\n",&ch);
    printf("%s",ch);
    
    
    return 0;
}