a = int(input())
b = int(input())
print(a*(b%10))
print(a*((b%100)//10))
print(a*(b//100))
print(a*b)
'Coding Test > 백준_Python' 카테고리의 다른 글
[백준/python] 9498번 - 시험 성적 (0) | 2020.06.22 |
---|---|
[백준/python] 1330번 - 두 수 비교하기 (0) | 2020.06.22 |
[백준/python] 10430번 - 나머지 (0) | 2020.06.22 |
[백준/python] 10869번 - 사칙연산 (0) | 2020.06.22 |
[백준/python] 1008번 - A/B (0) | 2020.06.22 |