#include <stdio.h>

int main() {
    char str[100];
    scanf("%s",&str);
    printf("%s\n",str);
    
    
    return 0;
}