using System;
using System.Linq;
public class Program
{
public static void Main()
var list1 = new[] { 11, 5, 17, 7, 1 };
var list2 = new[] { 17, 5, 1, 11, 71 };
list1.Except(list2).Dump();
}