Lesson 10: Reading input
So far the program talked. Now it will listen: Console.ReadLine() reads a line the user types and returns it as a string. You store the answer in a variable: string name = Console.ReadLine();. A critical point: input is always text — even if the user types 25, what's stored is the string "25", not t