/*
Two words or phrases can be considered anagrams of each other if each contains the same letters just arranged differently, ignoring spaces.
For example keep and peek would be anagrams. Also dormitory and dirty room would be anagrams.
Write a method that accepts two strings and test for anagram. Method should return true if it is an anagram and false if not. Also write the response to the console.
Good Luck!
*/
using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}