본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24376번 РЕДИЦА

by 현장 2024. 7. 30.

-Code

x, n = map(int, input().split())

num, res = 1, ""

while len(res) < n:
    res += str(num)
    num *= x

print(res[n - 1])