public static void Main()
int[] arr = {12,45,78,36,97,85,45,68,25,30,78,98};
int arrSub = arr.Length%input == 0 ? arr.Length/input : (arr.Length/input) + 1;
Console.WriteLine("SubArray needs to be created: " + arrSub + " from the array length of " + arr.Length);Console.WriteLine();
for(int i = 1; i <= arrSub; i++)
Console.WriteLine("Array " + i);
for(int j = 0; j < input; j++)
Console.WriteLine(arr[count]);