Each officially published book corresponds to an ISBN number. The ISBN code consists of nine digits, one-digit identification code, and three separators, the format is as follows: "x-xxx-xxxxx-x", where the symbol "-" is a separator (minus sign on the keyboard), and the last digit is an identifier, for example, 0-670-82162-4 is a standard ISBN code. The first digit of the ISBN code represents the publishing language of the book. For example, 0 represents English, and three digits after the first separator "-" represent the publishing house, for example, 670 represents the Viking Publishing House; the fifth digit after the second separator represents the number of the book in the press; the last digit is the identification code.
The identifier calculation method is as follows:
Multiply the first digit by 1 and the second digit by 2 ...... Similarly, if mod 11 is used, the remainder is the identification code. If the remainder is 10, the identification code is an uppercase letter X. For example, Id 4 of ISBN numbers 0-670-82162-4 is obtained as follows: for the 9 Numbers 067082162, multiply them from left to right by 1, 2 ,..., 9, then sum, that is, 0 × 1 + 6 × 2 + „ + 2 × 9 = 158, and then take Result 4 of 158 mod 11 as the identification code.
Your task is to write a program to determine whether the identifier in the input ISBN number is correct. If it is correct, only "Right" is output. If it is incorrect, the ISBN number that you think is correct is output.