Run ID:146419
提交时间:2026-01-28 14:10:56
#include<bits/stdc++.h> using namespace std; int main(){ char c[1000001],a,b; cin>>c; int i=0; while(c[i]!='\0'){ if(c[i]>='0'and c[i]<='9'){ i++; continue; }else{ cout<<c[i]; } i++; } return 0; }