#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { string s; cin>>s; int pos; for(int i=0; i<s.size(); i++) { if(s[i]!='*') { pos=i; break; } else cout<<s[i]; } for(int j=pos; j<s.size(); j++) { if(s[j]=='*') continue; else cout<<s[j]; } return 0; }
0.0分
0 人评分