#include <iostream>
#include <string>
int main()
{
std::string str; // declare a string variable
std::cin >> str; // take input and store it in str
if (str == "fine") // are they fine?
std::cout << "ok" << endl; // output ok if they are fine
else
std::cout << "why are you bad?" << endl; // output why are you bad if they are not
return 0;
}