BOJ / Python / 🥉3 / 2588번 / 곱셈 A = int(input()) B = int(input()) out3 = A*((B%100)%10) # 1의 자리 out4 = A*((B%100)//10) # int형 몫을 구하는 연산 // out5 = A*(B//100) result = A * B print(out3, out4, out5, result, sep='\n') # 출력 사이에 개행을 하기 위한 sep='\n' Algorithm/BAEKJOON 2023.05.15