def caesar(s, shift):
    return chr(ord(s[0]) + shift)


with open('input.txt') as f_in, open('output.txt', 'w') as f_out:
    count = 0
    for line in f_in:
        count = count + 1
        print(caesar(line.strip(), count), file=f_out)