using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
List<int> employerLmbps = new List<int> { 1, 2, 3, 4, 5, 6 };
List<int> employerLmbpsReview = new List<int> { 4, 5, 6};
List<int> employerLmbpsReviewNotUp = new List<int> { 1, 2 };
List<int> result = employerLmbps.Except(employerLmbpsReviewNotUp).ToList();
result.ForEach(i => Console.Write("{0}\t", i));