728x90
반응형
단순 문자열 문제이다.
N, M = map(int, input().split())
res = str(N)*N
print(res if len(res) <= M else res[:M])
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15372번 A Simple Problem.(python) (0) | 2021.02.27 |
---|---|
백준 알고리즘 12174번 #include <Google I/O.h>(python) (0) | 2021.02.26 |
백준 알고리즘 11816번 8진수, 10진수, 16진수(python) (0) | 2021.02.26 |
백준 알고리즘 11575번 Affine Cipher(python) (0) | 2021.02.26 |
백준 알고리즘 15829번 Hashing(python) (0) | 2021.02.26 |