Run ID:88506
提交时间:2024-08-19 11:16:17
#include<bits/stdc++.h> using namespace std; char c[201],a,b; int main(){ cin>>c; int n=strlen(c); int l=0; while(l<=n-1){ if(c[l]+0<=48&&c[l]+0>=57){ cout<<c[l]; } l++; } cout<<c; return 0; }