6 lines
90 B
Python
6 lines
90 B
Python
|
pancakes = int(input())
|
||
|
if pancakes > 3:
|
||
|
print("Yum!")
|
||
|
else:
|
||
|
print("Still hungry!")
|