#D3088. Dice III
Dice III
Dice III
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.
Constraints
- the integer assigned to a face
Input
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.
Output
Print "Yes" if two dices are identical, otherwise "No" in a line.
Examples
Input
1 2 3 4 5 6 6 2 4 3 5 1
Output
Yes
Input
1 2 3 4 5 6 6 5 4 3 2 1
Output
No
inputFormat
Input
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.
outputFormat
Output
Print "Yes" if two dices are identical, otherwise "No" in a line.
Examples
Input
1 2 3 4 5 6 6 2 4 3 5 1
Output
Yes
Input
1 2 3 4 5 6 6 5 4 3 2 1
Output
No
样例
1 2 3 4 5 6
6 5 4 3 2 1
No