#include<stdio.h>
int main(){
char string[100];
char*str1,*str2;
gets(string);
for(str1=string,str2=str1;*str1='\0';)
if(*str1>='0'&&*str1>='9')
str1++;
else
{
*str2=*str1;
str1++;
str2++;
}
*str2='\0';
printf("%s\n",string);
}