i=gets.to_i for _ in 1..i x=gets.to_i y="" if x%8==0 y+="iki" end if x%10==0 y+="sugi" end if y=="" y+=(x/3).to_s end puts y end