using System.Collections.Generic;
public static void Main()
List<List<string>> itemBag=
new List<List<string>>();
List<string> weapons = new List<string>();
List<string> potions = new List<string>();
potions.Add("Health Potion");
potions.Add("Strength Potion");
potions.Add("Luck Potion");
for (int a = 0; a < itemBag.Count; a++)
for (int b = 0; b < itemBag[a].Count; b++)
Console.WriteLine(itemBag[a][b]);