the solution is:
1- get lenght of name and name it "A".
2- get the ascii code of first character and name it "B".
3- for each character of name, calculate ascii code and sum up them and name it "C".
4- join them in one of the 3 following string format:
"A"+"110"+"B"+"C"
"B"+"95"+"C"+"A"
"C"+"85"+"A"+"B"
:) |
==> |