n = int(input())
for i in range(1, n+1):
    if str(i)[::-1] == str(i):
        print(i)