public static void Main()
string timesInput = Console.ReadLine();
int testCases = Int32.Parse(timesInput);
string inputLength = Console.ReadLine();
int length = Int32.Parse(inputLength);
public static void printFibonacci(int length)
int first = 0, second = 1, next, c;
for (c = 0; c < length; c++)