#include <bits/stdc++.h>
using namespace std;
string x;
array<int, 3> cnt = {};
int sum;
bool f() {
    if (cnt[sum] == 0) {
        return 0;
    }
    cnt[sum]--;
    return cnt[0] && cnt[1] == cnt[2];
}
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    cin >> x;
    for (auto c : x) {
        if (c != '0') {
            cnt[(c - '0') % 3]++;
            sum = (sum + (c - '0')) % 3;
        }
    }
    cout << (f() ? "kou" : "yukari");
    return 0;
}