#include<iostream>
using namespace std;
const int N=1e4+10;
int main()
{
string st;
getline(cin,st);
int n=st.size();
while(n--)
{
for(int i=0;i<st.size();i++)
{
if(st[i]>='0'&&st[i]<='9')
{
for(int j=i;j<=st.size()-1;j++)
st[j]=st[j+1];
}
}
}
for(int i=0;i<st.size();i++)
{
cout<<st[i];
}
return 0;
}