Greetings

Report a typo

Write a program that first reads the user's name as a string, then reads the user's age as a number, and then their favorite movie. In the end, the program should output "Hi, name, your age is age, your favorite movie is favorite movie".

Sample Input 1:

Mark
15
Spider Man

Sample Output 1:

Hi, Mark, your age is 15, your favorite movie is Spider Man
Write a program in Scala 3
import scala.io.StdIn._

@main def program =
// put your code here
___

Create a free account to access the full topic