본문 바로가기

인문학도 개발일지/1일1알고리즘

[알고리즘] 백준 2588 : 곱셈 파이썬 풀이

 

 

풀이
_1 = int(input())
_2 = int(input())

str_2 = str(_2)

print(_1 * int(str_2[2]))
print(_1 * int(str_2[1]))
print(_1 * int(str_2[0]))
print(_1*_2)