i know how to make a console read two integers but each integer by it self like this
int a = int.Parse(Console.ReadLine()); int b = int.Parse(Console.ReadLin
in 1 line, thanks to LinQ and regular expression (no type-checking neeeded)
var numbers = from Match number in new Regex(@"\d+").Matches(Console.ReadLine()) select int.Parse(number.Value);