#include using namespace std; int main(){ int n; cin >> n; int input; for(int i=0; i> input; if(input % 80 == 0){ cout << "ikisugi" << endl; } else if(input % 10 == 0){ cout << "sugi" << endl; } else if(input % 8 == 0){ cout << "iki" << endl; } else { cout << input / 3 << endl; } } return 0; }