# ============================================================
# SECTION 2 — Variables
# ============================================================
name = 'Alice'
age = 18
height = 1.65
print(name)
print(age)
print(height)
# TASK: Replace the three values above with your own name, age and height.
# Then add a print() line that shows all three on the same line, e.g.
# Alice is 18 years old and 1.65m tall.
# Hint: print() accepts multiple values separated by commas.