#abc300b. [abc300_b]Same Map in the RPG World

[abc300_b]Same Map in the RPG World

Problem Statement

Takahashi is developing an RPG. He has decided to write a code that checks whether two maps are equal.

We have grids AA and BB with HH horizontal rows and WW vertical columns. Each cell in the grid has a symbol # or . written on it.
The symbols written on the cell at the ii-th row from the top and jj-th column from the left in AA and BB are denoted by Ai,jA_{i, j} and Bi,jB_{i, j}, respectively.

The following two operations are called a vertical shift and horizontal shift.

  • For each j=1,2,dots,Wj=1, 2, \\dots, W, simultaneously do the following:
    • simultaneously replace A1,j,A2,j,dots,AH1,j,AH,jA_{1,j}, A_{2,j}, \\dots, A_{H-1, j}, A_{H,j} with A2,j,A3,j,dots,AH,j,A1,jA_{2,j}, A_{3,j}, \\dots, A_{H,j}, A_{1,j}.
  • For each i=1,2,dots,Hi = 1, 2, \\dots, H, simultaneously do the following:
    • simultaneously replace Ai,1,Ai,2,dots,Ai,W1,Ai,WA_{i,1}, A_{i,2}, \\dots, A_{i,W-1}, A_{i,W} with Ai,2,Ai,3,dots,Ai,W,Ai,1A_{i, 2}, A_{i, 3}, \\dots, A_{i,W}, A_{i,1}.

Is there a pair of non-negative integers (s,t)(s, t) that satisfies the following condition? Print Yes if there is, and No otherwise.

  • After applying a vertical shift ss times and a horizontal shift tt times, AA is equal to BB.

Here, AA is said to be equal to BB if and only if Ai,j=Bi,jA_{i, j} = B_{i, j} for all integer pairs (i,j)(i, j) such that 1leqileqH1 \\leq i \\leq H and 1leqjleqW1 \\leq j \\leq W.

Constraints

  • 2leqH,Wleq302 \\leq H, W \\leq 30
  • Ai,jA_{i,j} is # or ., and so is Bi,jB_{i,j}.
  • HH and WW are integers.

Input

The input is given from Standard Input in the following format:

HH WW A1,1A1,2dotsA1,WA_{1,1}A_{1,2}\\dots A_{1,W} A2,1A2,2dotsA2,WA_{2,1}A_{2,2}\\dots A_{2,W} vdots\\vdots AH,1AH,2dotsAH,WA_{H,1}A_{H,2}\\dots A_{H,W} B1,1B1,2dotsB1,WB_{1,1}B_{1,2}\\dots B_{1,W} B2,1B2,2dotsB2,WB_{2,1}B_{2,2}\\dots B_{2,W} vdots\\vdots BH,1BH,2dotsBH,WB_{H,1}B_{H,2}\\dots B_{H,W}

Output

Print Yes if there is a conforming integer pair (s,t)(s, t); print No otherwise.


Sample Input 1

4 3
..#
...
.#.
...
#..
...
.#.
...

Sample Output 1

Yes

By choosing (s,t)=(2,1)(s, t) = (2, 1), the resulting AA is equal to BB.
We describe the procedure when (s,t)=(2,1)(s, t) = (2, 1) is chosen. Initially, AA is as follows.

..#
...
.#.
...

We first apply a vertical shift to make AA as follows.

...
.#.
...
..#

Then we apply another vertical shift to make AA as follows.

.#.
...
..#
...

Finally, we apply a horizontal shift to make AA as follows, which equals BB.

#..
...
.#.
...

Sample Input 2

3 2
##
##
#.
..
#.
#.

Sample Output 2

No

No choice of (s,t)(s, t) makes AA equal BB.


Sample Input 3

4 5
#####
.#...
.##..
..##.
...##
#...#
#####
...#.

Sample Output 3

Yes

Sample Input 4

10 30
..........##########..........
..........####....###.....##..
.....##....##......##...#####.
....####...##..#####...##...##
...##..##..##......##..##....#
#.##....##....##...##..##.....
..##....##.##..#####...##...##
..###..###..............##.##.
.#..####..#..............###..
#..........##.................
................#..........##.
######....................####
....###.....##............####
.....##...#####......##....##.
.#####...##...##....####...##.
.....##..##....#...##..##..##.
##...##..##.....#.##....##....
.#####...##...##..##....##.##.
..........##.##...###..###....
...........###...#..####..#...

Sample Output 4

Yes