6 lines
141 B
Python
6 lines
141 B
Python
height = input("How tall are you, in cm :")
|
|
height = int(height)
|
|
if height >= 170:
|
|
print("You are tall")
|
|
else:
|
|
print("You are short") |