using System.Collections.Generic;
Queue<int> tempQue = new Queue<int>();
num = int.Parse(Console.ReadLine());
int ArrLength = tempQue.Count;
int[] arr = new int[ArrLength];
foreach( int number in tempQue )
for(int i=0; i<ArrLength; i++)
Console.WriteLine(arr[i]);
public static void Main()