In Coral Please
Using an elseif statement, write code that puts "Young adult" to output if userAge is less than 20.
Ex: If userAge is 19, then output is:
Young adult
integer userAge = 23 // Program will be tested with 10, 13, 19, 20, and 21
userAge = Get next input
if userAge < 13
Put "Kid" to output
elseif userAge < 20
Put "Young adult" to output
// Your solution goes here