is a love guru. He has a mathematical way to determine the compatibility of two people. His method is as follows:
- Take the names of the two people and perform the following process:
- Take the value of each letter (a = 1, b = 2, c = 3, etc.) and put it to the power of its position in the name (starting from 1).
- Sum these values together and mod the number by into the range .
- Add these two values together to get the compatibility out of .
needs you to make a program that calculates two people's compatibility based on the criterion described above. The program should not be case sensitive.
Input Specification
Given names and , find their compatibility out of . The names are guaranteed to consist of only latin letters and letters in length.
Subtask 1 [10%]
Subtask 2 [20%]
Subtask 3 [70%]
Output Specification
A number in the range .
Sample Input
Romeo
Juliet
Sample Output
15
Explanation for Sample Output
Romeo:
Juliet:
Compatibility:
Comments
What does mod by 10 into the range [1,10] mean?
Edit: I believe I understand what the function mod means, however I don't really know what the question is asking. lol
It means mod by 10 but if the result is 0, add 10 so your answer for that name should be between 1-10.
Ok, thanks!
Hypnova sensei, I'm lonely can you set me up? pls <3 <3
Me too
Isn't 10 mod 10 0?
Yes, but the problem statement says: