Write a program which reads the two dices constructed in the same way as Dice I, and determines whether these two dices are identical. You can roll a dice in the same way as Dice I, and if all integers observed from the six directions are the same as that of another dice, these dices can be considered as identical.
In the first line, six integers assigned to faces of a dice are given in ascending order of their corresponding labels.
In the second line, six integers assigned to faces of another dice are given in ascending order of their corresponding labels.
Print "Yes" if two dices are identical, otherwise "No" in a line.
1 2 3 4 5 6 6 2 4 3 5 1
Yes
1 2 3 4 5 6 6 5 4 3 2 1
No