What is the output of the following program . #include <iostream> #include <string>
#include <algorithm>
using namespace std;
int main()
{
string s = "sookshmas beyond knowledge";
s.erase(remove(s.begin(), s.end(), ' ' ), s.end() ) ;
cout << s << endl;
}