Lesson 11: Parsing input
We saw that input from Console.ReadLine() is always text. But you can't do math on text: "5" + "3" gives "53", not 8. To compute, you convert the text into a number: int n = int.Parse(text); (or Convert.ToInt32(text)). After the conversion n is a real int you can do math with.