관리 메뉴

솜씨좋은장씨

[BaekJoon] 22193번 : Multiply (Python) 본문

Programming/코딩 1일 1문제

[BaekJoon] 22193번 : Multiply (Python)

솜씨좋은장씨 2022. 5. 22. 17:35
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 Multiply 입니다.

 

22193번: Multiply

Write a program that computes a product of two non-negative integers A and B. The integers are represented in decimal notation and have N and M digits, respectively.

www.acmicpc.net

👨🏻‍💻 코드 ( Solution )

def multiply(A, B):
    return A * B


if __name__ == "__main__":
    N, M = map(int, input().split())
    
    A = int(input())
    B = int(input())
    
    print(multiply(A, B))
 

GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

Comments