Problem: Anagram
Write a method that checks whether two words are anagrams. Two words are anagrams if they contain the same letters in any order. For example, "silent" and "listen" are anagrams. The header of the method should be
public static boolean isAnagram (String one, String two)
Write a test program that prompts the user to enter two strings and tells them whether the two strings are anagrams or not.