본문 바로가기

BOJ

[BOJ][Python] 백준 22193번 - Multiply

728x90

문제 링크: https://www.acmicpc.net/problem/22193

 

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

 

 


문제 풀이

두 번째 수와 세 번째 수랑 곱하면 된다.

 

 

코드

728x90