Same Letters

Give two strings A and B that only consist of the letters 'x' and 'y'. Find if A and B have the same number of x's and y's

If A has the same number of x's and y's as B (no matter the order) print "They have the same letters count", if they don't print "They don’t have the same letters count"

Example 1

Input

xxyy
yyxx

Output

They have the same letters count
Explanation

String A in the first line has 2 x's and 2 y's and String B in the second line also has 2 x's and 2 y's

Example 2

Input

xyxyx
xxyyy

Output

They don’t have the same letters count
Explanation

String A in the first line has 3 x's and 2 y's while String B in the second line has 2 x's and 3 y's so they don't have the same letters count.

Example 3

Input

xyxyxyx
yyxxyxx

Output

They have the same letters count
Explanation

String A in the first line has 4 x's and 3 y's and String B in the second line also has 4 x's and 3 y's

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.