n = int(input()) ans = "" while n>6: ans = str(n%7) + ans n = n//7 print(str(n) + ans)