using System;
using System.Text.RegularExpressions;
public class Program
{
public static void Main()
string name = "Y.E.S. Leasing";
string formattedName = Regex.Replace(name, @"[^0-9a-zA-Z]+", "");
Console.WriteLine(formattedName);
}