#include<bits/stdc++.h>
using namespace std;
int main(){
stack<char> st;
char a;
while(cin>>a){
if(a=='#'){
if(!st.empty())st.pop();
}
else{
st.push(a);
}
}
string s = " ";
while(!st.empty()){
s += st.top();
st.pop();
}
for(int i=s.size()-1;i>=0;--i){
cout<<s[i];
}
return 0;
}