← Back to List

30456번: 바닥수 ↗

Solutions

Python 3
60 B | 60 chars
N, L = map(int, input().split())
print("1"*(L - 1) + str(N))