시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB40433730486.857%

문제

A known problem with some microphones is the “hissing s”. That is, sometimes the sound of the letter s is particularly pronounced; it stands out from the rest of the word in an unpleasant way.

Of particular annoyance are words that contain the letter s twice in a row. Words like amiss, kiss, mississippi and even hiss itself.

입력

The input contains a single string on a single line. This string consists of only lowercase letters (no spaces) and has between 1 and 30 characters.

출력

Output a single line. If the input string contains two consecutive occurrences of the letter s, then output hiss. Otherwise, output no hiss.

예제 입력 1

amiss

예제 출력 1

hiss

예제 입력 2

octopuses

예제 출력 2

no hiss