public static void Main()
Console.WriteLine("Hello World");
string str1= Console.ReadLine();
string str2= Console.ReadLine();
char[] chars1 = str1.ToCharArray();
char[] chars2 = str2.ToCharArray();
string str4 = new string(chars1);
string str5 = new string(chars2);
Console.WriteLine("both the strings are anagram");
Console.WriteLine("both the strings are not anagram");