보안을 그리다, 훈이

[Baekjoon/Python3] 2588번 곱셈 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2588번 곱셈

HooNeee 2020. 12. 3. 02:09

[Baekjoon/Python3] 2588번 곱셈

 

www.acmicpc.net/problem/2588

 

2588번: 곱셈

첫째 줄부터 넷째 줄까지 차례대로 (3), (4), (5), (6)에 들어갈 값을 출력한다.

www.acmicpc.net

 

A = int(input())
B = int(input())

print(A * ((B % 100) % 10))
print(A * ((B % 100) // 10))
print(A * (B // 100))
print(A * B)
Comments