코딩 테스트 준비하기/백준 - 입출력
[10998] A * B
젤리의it
2023. 6. 27. 19:38
A, B = map(int, input().split())
print(A*B)
A, B = map(int, input().split())
print(A*B)