Two strings are anagrams if one is a rearrangement of the other — the same letters, each used the same number of times.
Input
Two lines: the string s on the first line and the string t on the second.
Output
true if t is an anagram of s, otherwise false.