#Lutece0775. Similar strings

Similar strings

Migrated from Lutece 775 Similar strings

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

We call two strings S[1n]S[1\cdots n] and T[1n]T[1\cdots n] similar if and only if:

  1. They have the same length nn.
  2. For any pair of index ii and jj, if Si=SjS_i=S_j,then Ti=TjT_i=T_j.If SiSjS_i\neq S_j, then TiTjT_i\neq T_j (\neq means not equal to).

For example:

  1. S=S=AABBC and T=T=ZZYYK are similar.
  2. S=S=AABBC and T=T=ZZYY are not similar. (different length)
  3. S=S=AABBC and T=T=ZXYYK are not similar. (S1=S2S_1=S_2,T1T2T_1\neq T_2).

Now, give you two strings, please tell me whether they are similar.

Input

The first line of input is a number TT,indicating the number of test case.For each test case,there are two lines,string SS and string TT.Each string only contains upper-case.English letters,at least 11 letter,at most 10510^5 letters.

Output

For each test case if SS and TT are similar output YES, otherwise output NO.

Samples

3
AABBC
ZZYYK
AABBC
ZZYY
AABBC
ZXYYK
YES
NO
NO

Resources

第五届ACM趣味程序设计竞赛第四场(正式赛)