본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#55 백준 파이썬 [2588] 곱셈

https://www.acmicpc.net/problem/2588   

 

 

#Solution

 

num1=list(map(int, map(str, input())))
num2=list(map(int, map(str, input())))

answer = 0
for i in range(0,3):
    temp_num=0
    temp_num = num2[2-i]*num1[0]*100 + num2[2-i]*num1[1]*10 + num2[2-i]*num1[2]*1
    answer += temp_num *(10**i)
    print( temp_num )
print(answer)