문제 풀이/Baekjoon Online Judge
[python3] 10998번 A×B
[잉간]
2018. 3. 24. 21:34
N = input().split() A = int(N[0]) B = int(N[1]) print(A*B)