You are given two strings S and T each of length N consisting of lowercase English letters. In one operation, you can swap any two characters of S if the absolute difference between their indices is a multiple of 2. You may perform this operation any number of times. The absolute difference between indices i and j will be |i−j|.
Print Yes if you can convert S into T after some operations else print No.
Input format
Output format
For each test case, print Yes if you can convert S into T after some operations else print No in a separate line.
Constraints
1≤T≤101≤N≤105S and T contains lowercase English letters
For test case 1: S is already equal to T. Hence, the answer is Yes.
For test case 2: S cannot be converted into T. Hence, the answer is No.
For test case 3: