N = int(input())
init = 666

while(N):
    if '666' in str(init):
        N -= 1
    
    init += 1
print(init - 1)

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 11650번(python)  (0) 2019.07.19
백준 1107번(python)  (0) 2019.07.10
백준 1018번(python)  (0) 2019.07.08
백준 7568번(python)  (0) 2019.07.07
백준 2231번(python)  (0) 2019.07.07