using System;
public class Program
{
public static void Main()
Console.WriteLine(AreAnagrams("aaaaccb","bccaaaa"));//true
Console.WriteLine(AreAnagrams("aaaa","bccaaaa"));//false
}
//Write a method to decide if two strings are anagrams or not.
/*Instructions
1.DO NOT use reverse string method.*/
public static bool AreAnagrams(string str1, string str2)
return false;