a = input() b = "" for i in range (len(a)): if i == len(a) - 1: b += chr(ord(a[i]) + ord(a[0])) else: b += chr(ord(a[i]) + ord(a[i+1])) print (b)