Hint: Takes user input for name and age, then calculates and displays the age in 5 years.
PRINT "Enter your name: "
INPUT student_name
PRINT "Enter your current age (as a number): "
INPUT student_age_input
student_age_numeric = INT(student_age_input)
age_in_five_years = student_age_numeric + 5
PRINT "Hello, " + student_name
PRINT "In 5 years, you will be " + STRING(age_in_five_years) + " years old."