#include #include using namespace std; int main() { long long A, B; cin >> A >> B; if (A * 5LL > B * 18LL) { cout << "KoD" << endl; return 0; } if (A * 5 < B * 18) { cout << "blackyuki" << endl; return 0; } if (A * 5 == B * 18) { cout << "same" << endl; return 0; } }