2021-04-19 20:24:26 +00:00

6 lines
181 B
Python

age = input("How old are you? ")
height = input("How tall are you? ")
weight = input("How much do you weight? ")
print(f"So, you're {age} old, {height} tall, and {weight} heavy/")