# ============================================================
# SECTION 4 — Getting Input from the User
# ============================================================
user_name = await input("What is your name? ")
print("Nice to meet you,", user_name)
user_age = await input("How old are you? ")
user_age = int(user_age)
next_birthday = user_age + 1
print("Next year you will be", next_birthday)
# TASK: Add another input() that asks for the user's height in metres.
# Convert it to a float, then print a sentence using their age and height.