#include <iostream>
#include  <cctype> 

using namespace std;

int main() {
    std::string str("      Where      is everybody?");
    int i = 0;
    while (isblank(str[i])) i++;
    while (!isblank(str[i])) i++;
    while (isblank(str[i])) i++;
    str = str.substr(i);
    cout << str << endl;
	return 0;
}