#include <stdio.h>

main()
{
  int c;

  while ((c = getc(stdin)) != EOF)
    if (c == '\r') putc('\n', stdout);
  else
    putc(c, stdout);
}
