#include <iostream>
#include <string>     // header file for C++ string manipulation
using namespace std;

int main()
{
   string answer;
   cin >> answer;

   if (answer == "yes")
       cout << "Celebration!" << endl;
     else
       cout << "Tell me: why?" << endl;
}
