Run ID:91619
提交时间:2024-09-22 11:13:48
#include<bits/stdc++.h> using namespace std; int main() { char str[1000000]; int i; cin>>str; for(i=0;str[i]!='\0';i++){ if(str[i]>='0' && str[i]<='9') continue; else cout<<str[i]; } cout<<endl; return 0; }