#include <stdio.h>

int main()
{
   char line[100];
   int c;

   // Ignore the rest of the line.
   while ( (c = fgetc(stdin)) != '\n' && c != EOF);

   fgets(line, 100, stdin);
   printf("%s", line);
}
