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 x; int m; int n; Console.WriteLine("Enter two no's seperated by space: "); x = Console.ReadLine(); m = Convert.ToInt32(x.Split(' ')[0]); n = Convert.ToInt32(x.Split(' ')[1]); Console.WriteLine("" + m + " " + n);
This Should work as per your need!