#include <stdio.h>

int main() {
    char s[10000];
    puts(gets(s));
    return 0;
}