#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main ()
  {
   string str("Debi...utant bez przykladu nie zrozumie.");
   str.resize(remove_if(begin(str),end(str),[](char ch) { return ch=='e'; } )-begin(str));
   cout<<str<<endl;
   return 0;
  }