백준/기초

[백준][입출력 및 사칙연산] 10998번 A×B

Snowboarder 2022. 2. 15. 17:09

문제풀이

A, B = input().split()
print(int(A)*int(B))