So this is my code:
static void Main(string[] args)
{
Console.WriteLine("How many numbers are you going to enter?");
long num = long.Parse(Console.ReadLine());
long[] nums = new long[num];
}
When I enter 10000000000 for "num" I get
"System.OverflowException Arithmetic operation resulted in an overflow."
What do i do to fix it?