Algorithm/Python
[백준 BoJ] 13277 - 큰 수 곱셉
cgy12306
2021. 3. 25. 16:51
a,b = input().split()
a = int(a)
b = int(b)
print(a*b)