public static void Main()
Console.WriteLine("input two words/phrases");
string a = Console.ReadLine();
string b = Console.ReadLine();
if (a.Length != b.Length){
Console.WriteLine("not annogram");
Console.WriteLine("annogram");
Console.WriteLine("not annogram");
static string Format(string input){
for(int i = 0; i < input.Length; i++){
if(Char.IsUpper(character) == true){
output += Char.ToLower(character);
else if(Char.IsLower(character) == true){
static string Alpha (string orderMe){
char[] alphabeticArray = orderMe.ToCharArray();
Array.Sort(alphabeticArray);
orderMe = new string (alphabeticArray);
static bool Same (string one, string two){
for(int i = 0; i < one.Length; i++){