using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Numerics; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using static System.Math; public static class P { public static void Main() { Console.WriteLine(string.Join("\n", Directory.EnumerateFiles("/bin").Select(Path.GetFileName).OrderBy(x => x, StringComparer.OrdinalIgnoreCase))); } }