mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-10 16:20:27 +08:00
19 lines
202 B
C++
19 lines
202 B
C++
#include <iostream>
|
|
#include <cstring>
|
|
using namespace std;
|
|
int main(){
|
|
string a;
|
|
getline(cin,a);
|
|
for(int i=0;i<strlen(a);i++){
|
|
if(a[i]==' '){
|
|
|
|
}
|
|
else{
|
|
cout <<a[i];
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|