#arc081b. [arc081_b]Coloring Dominoes

[arc081_b]Coloring Dominoes

Problem Statement

We have a board with a 2timesN2 \\times N grid. Snuke covered the board with NN dominoes without overlaps. Here, a domino can cover a 1times21 \\times 2 or 2times12 \\times 1 square.

Then, Snuke decided to paint these dominoes using three colors: red, cyan and green. Two dominoes that are adjacent by side should be painted by different colors. Here, it is not always necessary to use all three colors.

Find the number of such ways to paint the dominoes, modulo 10000000071000000007.

The arrangement of the dominoes is given to you as two strings S1S_1 and S2S_2 in the following manner:

  • Each domino is represented by a different English letter (lowercase or uppercase).
  • The jj-th character in SiS_i represents the domino that occupies the square at the ii-th row from the top and jj-th column from the left.

Constraints

  • 1leqNleq521 \\leq N \\leq 52
  • S1=S2=N|S_1| = |S_2| = N
  • S1S_1 and S2S_2 consist of lowercase and uppercase English letters.
  • S1S_1 and S2S_2 represent a valid arrangement of dominoes.

Input

Input is given from Standard Input in the following format:

NN S1S_1 S2S_2

Output

Print the number of such ways to paint the dominoes, modulo 10000000071000000007.


Sample Input 1

3
aab
ccb

Sample Output 1

6

There are six ways as shown below:


Sample Input 2

1
Z
Z

Sample Output 2

3

Note that it is not always necessary to use all the colors.


Sample Input 3

52
RvvttdWIyyPPQFFZZssffEEkkaSSDKqcibbeYrhAljCCGGJppHHn
RLLwwdWIxxNNQUUXXVVMMooBBaggDKqcimmeYrhAljOOTTJuuzzn

Sample Output 3

958681902