본문 바로가기

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

#9 백준 파이썬 [10998] A*B

#9 [10998] A*B

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



#9 [10998] Solution

a,b= map(int, input().split())
print(a*b)