#include <stdio.h>

int main () {
  
  char texto[50];

  fgets (texto, 50, stdin);
  printf ("%s\n", texto);

  return (0);
}