using System.Collections.Generic;
public static void Main()
List<List<string>> Permutations = new List<List<string>>();
List<string> ls1 = new List<string>() {"+", "-", "x", "/"};
List<string> ls2 = new List<string>() {"+", "-", "/", "x"};
Console.WriteLine(Permutations.Count);
foreach (var ls in Permutations) {
foreach (string str in ls) {