카테고리 없음

프로그래머스 스쿨 - 두 수의 곱(Python)

보안매크로 2023. 8. 1. 19:54
def solution(num1, num2):
    answer = 0
    answer = num1 * num2
    return answer