Console.Write("Enter number of strings: ");
int n = int.Parse(Console.ReadLine());
string[] jumps = new string[n];
for (int s = 0; s < n; s++) {
string x = Console.ReadLine();
for (int f = n - 1; f >= 0; f--){
Console.Write(jumps[f] + " ");
for (int g = 0; g < n; g++){
Console.Write(jumps[g] + " ");
for (int o = 0; o < n; o++) {
if (jumps[o] == "bingo"){