Run ID:146411

提交时间:2026-01-28 14:08:42

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