문제: https://www.acmicpc.net/problem/11005
import sys
read = lambda : sys.stdin.readline().strip()
n, b = map(int, read().split(' '))
ans = ''
while n >0:
tmp = (n%b)
n //= b
if tmp >9:
tmp = chr(tmp+55)
ans += str(tmp)
print(ans[::-1])
… 대소문자를 생각해서 숫자를 더해야한다(…)