n=int(input()) a='' j=0 for i in range(26): if 65+i+n<=90: a+=str(chr((65+i)+n)) else: a+=str(chr(65+j)) j+=1 print(a)