using System;
using System.Linq;
public class Program
{
public static void Main()
Console.WriteLine(IsIsogram("Hello"));
}
static bool IsIsogram(string str)
return str.ToLower().ToCharArray().Distinct().Count() == str.Count();