n = int(input()) mod = 26 ans = "" while n >= 0: ans = chr(n % 26 + ord("A")) + ans n = n // mod - 1 print(ans)