#include <stdio.h>

int main(void) {
	char c;
	while((c = getchar()) != EOF) {
		if(c != 'e') {
			putchar(c);
		}
	}
	return 0;
}
