#include"bits/stdc++.h" using namespace std; int main() { int N; cin >> N; vector a(N); for(int i=0; i> a[i]; for (int i = 0; i < N; i++) { if (a[i] % 8 == 0 && a[i] % 10 == 0) { cout << "ikisugi" << endl; } else if (a[i] % 8 == 0) { cout << "iki" << endl; } else if (a[i] % 10 == 0) { cout << "sugi" << endl; } else { cout << a[i]/3 << endl; } } }