Run ID:146424

提交时间:2026-01-28 14:13:22

#include<bits/stdc++.h> using namespace std; int main(){ char c[1000001],a,b; cin.getline(c,1000001); int i=0; while(c[i]!='\0'){ if(c[i]>='0'and c[i]<='9'){ i++; continue; }else{ cout<<c[i]; i++; } } return 0; }