//5 Console.WriteLine("Введите первое слово:"); string x = Console.ReadLine().ToLower(); Console.WriteLine("Введите второе слово:"); string y = Console.ReadLine().ToLower(); bool isEqual = Enumerable.SequenceEqual(x.OrderBy(e => e), y.OrderBy(e => e)); if (isEqual) { Console.WriteLine("Yes"); } else { Console.WriteLine("No"); }