#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main() {
string word;
cout << "Please enter the word from which you want to remove the letter o" << endl << "Entered word: ";
getline(cin, word);
word.erase(remove(word.begin(), word.end(), 'o'), word.end());
std::cout << "Result: " << word << endl;
}