# include <stdio.h>
int main(void)
{
char str[20];
int i=0;
while(str[i]=getchar())
{
if(str[i]=='\n'||i==19) break;
else if( str[i]== '#' && i!=0 )
{
i--;
continue;
}
else if( str[i]== '@' )
{
i=0;
continue;
}
i++;
}
str[i]='\0';
printf("%s",str);
return 0;
}