Run ID:146430

提交时间:2026-01-28 14:19:03

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