8 lines
232 B
Python
Raw Normal View History

2021-04-19 17:06:12 +00:00
print("How old are you?", end=' ')
age = input()
print("How tall are you?", end=' ')
height = input()
print("How much do you weigh?", end=' ')
weight = input()
print(f"So you are {age} years old, {height} tall and {weight} heavy.")