#include <iostream>
#include <string>
using namespace std;
int main()
{
string sentence = "i like coding";
//문자열에서 특정 문자만 제거할때는 erase와 remove함수를 함께 사용한다.
//문자열.erase(remove(시작부분,끝부분,지울 특정문자),문자열.end());
sentence.erase(remove(sentence.begin(), sentence.end(), ' '), sentence.end());
cout << sentence << endl;
return 0;
}