8 lines
98 B
Python
8 lines
98 B
Python
word = input()
|
|
much = word.count('ss')
|
|
|
|
if much >0:
|
|
print('hiss')
|
|
else :
|
|
print('no hiss')
|