You are given a string s consisting of lowercase English letters, and an integer k.
First, converts into an integer by replacing each letter with its position in the alphabet (i.e., replace 'a' with 1, 'b' with 2, ..., 'z' with 26). Then, transform the integer by replacing it with the sum of its digits. Repeat the transform operation ktimes in total.
For example, if s = "zbax" and k = 2, then the resulting integer would be 8 by the following operations: