import sys
input = sys.stdin.readline
o = {'8':'0', '5':'1', '4':'2', '9':'3', '1':'4', '7':'5', '6':'6', '3':'7', '2':'8', '0':'9'}
m, n = map(int, input().split())
r = []
for i in range(m, n+1):
s = [str(i)]
k = ""
for j in s[0]:
k += o[j]
s.append(k)
r.append(s)
r = sorted(r, key=lambda x:x[1])
for i, j in enumerate(r):
if (i+1)%10 == 0:
print(j[0])
else:
print(j[0], end=" ")
'문제풀이 > 백준(Boj) 문제풀이' 카테고리의 다른 글
[백준][그리디 알고리즘] 5585. 거스름돈(파이썬/Python) (0) | 2021.09.30 |
---|---|
[백준][그리디 알고리즘] 1026. 보물(파이썬/Python) (0) | 2021.09.30 |
[백준][DFS/BFS] 1260. DFS와 BFS (파이썬/Python) (0) | 2021.09.28 |
[백준][정수론 및 조합론] 1676. 팩토리얼 0의 개수 (파이썬/Python) (0) | 2021.09.28 |
[백준][이분 탐색] 1920. 수 찾기 (파이썬/Python) (0) | 2021.09.27 |