728x90
반응형
단순 사칙연산 문제이다.
N = int(input())
res = sum([N * 10**i for i in range(int(input())+1)])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14592번 2017 아주대학교 프로그래밍 경시대회 (Small)(python) (0) | 2021.03.04 |
---|---|
백준 알고리즘 14720번 우유 축제(python) (0) | 2021.03.04 |
백준 알고리즘 14656번 조교는 새디스트야!!(python) (0) | 2021.03.04 |
백준 알고리즘 14614번 Calculate!(python) (0) | 2021.03.04 |
백준 알고리즘 14579번 덧셈과 곱셈(python) (0) | 2021.03.03 |