Coding Test/백준

[Python] A×B

danii0110 2024. 7. 17. 09:46
a, b = map(int, input().split())
print(a*b)