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"
xxyy yyxx
They have the same letters count
xyxyx xxyyy
They don’t have the same letters count
xyxyxyx yyxxyxx
They have the same letters count