age = 20height = 5.9
is_student = True
name = "Alex"
chars = ['A', 'l', 'e', 'x']
age_next = age + 1
height_cm = height * 100
print("Name:", name)
print("Age:", age, "Height:", height, "Height in cm:", height_cm)
print("Is student?", is_student)
print("Characters:", chars)