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
string[] values = Console.ReadLine().Split(' '); int x = int.Parse(values[0]); int y = int.Parse(values[1]);