scientific_comp_projects/CODE/[python]kattis/trivial/hissing_microphone.py

8 lines
98 B
Python

word = input()
much = word.count('ss')
if much >0:
print('hiss')
else :
print('no hiss')