// No.661 ハローキティはりんご3個分 // https://yukicoder.me/problems/no/661 // #include using namespace std; int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int i; cin >> i; for (int j = 1; j <= i; ++j) { int n; cin >> n; if (n % 8 == 0) { if (n % 10 == 0) cout << "ikisugi" << endl; else cout << "iki" << endl; } else if (n % 10 == 0) cout << "sugi" << endl; else cout << n / 3 << endl; } }