#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using i128=__int128_t;
using u128=__uint128_t;
using ld=long double;
void solve()
{
int x,cnt=0;//我们可以筛出x的质因数个数 有几个代表会进行几轮 易知奇数个小红win 偶数个小紫win 计数然后判断即可
cin >> x;
for(int i=2;i*i<=x;i++)
{
while(x%i==0)
{
cnt++;
x/=i;
}
}
if(x>1) cnt++;
if(cnt%2==1) cout << "kou" << '\n';
else cout << "yukari" << "\n";
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t=1;
cin >> t;
while(t--)
{
solve();
}
return 0;
}