#include <stdio.h>

int main() {

 char name[20];
 
 scanf("%s",name);

 printf("%s\n", name);

 return 0;

}