import sys readline = sys.stdin.readline S = readline().rstrip() N = int(readline()) # 既に処理したことがあるものはdicに登録しておく dic = {} ans = [] def rotate_char(c, M): rot = M % 26 if c.upper() == c: # 大文字の場合 return chr((ord(c) - ord('A') + rot) % 26 + ord('A')) else: return chr((ord(c) - ord('a') + rot) % 26 + ord('a')) # CpCzNkSuTbEoAを0~25回rotateすると何になるかを求めておく bef = [""] * 26 T = "CpCzNkSuTbEoA" for i in range(26): temp = [] for t in T: temp.append(rotate_char(t, i)) bef[i] = "".join(temp) for s in S: if s in dic: ans.append(dic[s]) continue if s.isdigit(): # CpCzNkSuTbEoAになるまでに何回必要か to_T = 10 - int(s) if to_T > N: # CpCzNkSuTbEoAになれない ans.append(str(int(s) + N)) continue rest = N - to_T # 残りの試行回数 ans.append(bef[rest % 26]) else: target = rotate_char(s, N) dic[s] = target ans.append(target) print("".join(ans))