#include <bits/stdc++.h> using namespace std; int n, m; int main() { cin >> n >> m; cout << (n * m % 2 == 0 ? "yukari" : "akai"); return 0; }