A
andB
, andB
is an anagram ofA
.B
is an anagram ofA
meansB
is made by randomizing the order of the elements inA
.P
, fromA
toB
. A mappingP[i] = j
means thei
th element inA
appears inB
at indexj
.A
andB
may contain duplicates. If there are multiple answers, output any of them.P[0] = 1
because the0
th element ofA
appears atB[1]
, andP[1] = 4
1
st element ofA
appears atB[4]
, and so on.A, B
have equal lengths in range[1, 100]
.A[i], B[i]
are integers in range[0, 10^5]
.