백준 2588번 곱셈 파이썬
2022.03.07 15:55
백준 2588번 곱셈 파이썬 코드이다.
a = int(input())
b = input()
[print(a * int(n)) for n in reversed(b)]
print(a * int(b))