The mother of Fito wanted to buy his son a gift via an online store. During the purchase
process, the system asked for a credit card number to be entered. However, the purchase failed
because the mother mistakenly wrote one of the digits from that number. Internet research has revealed
that such systems recognize the wrong number based on Luhn's algorithm.
This algorithm confirms the correctness of the number using a control digit which is always the last
digit in the number. Steps to determine the validity of a number are:
- Starting from the second digit from the right in the number (tens of the number), double the
value of every second digit to the left. If this product is greater than nine, then the digits of that
product should be summed up.
- Calculate the sum of all values obtained in the previous step.
- The sum thus obtained should be multiplied by nine and it should be determined the remainder of division by ten.
- If the resulting remainder is equal to the last digit of the number (unit), the number is
considered valid.
E.g. account number 79927398713 is considered valid because the end right digit 3 can be obtained
from the remaining digits in the way described.
Write a program that loads the card number as a N-string that consists only of digits and exactly one
sign "x", and prints the smallest one-digit number which we can replace the sign "x" with so that the
account number is valid.