#include	<stdio.h>

int main(void)

 { char ch;

	while((ch=fgetc(stdin))!=EOF)

		{ if(ch!='\r') printf("%c",ch);

	}

 }
