mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
20 lines
218 B
C++
20 lines
218 B
C++
#include <iostream>
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
using namespace std;
|
|
int main(){
|
|
char a[1000];
|
|
gets(a);
|
|
for(int i=0;i<strlen(a);i++){
|
|
if(a[i]==' '){
|
|
|
|
}
|
|
else{
|
|
cout <<a[i];
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|