백준(Python) 풀이/수학

백준(Python) 22193번 Multiply 풀이

개발윗미 2022. 1. 3. 19:44

Python으로 구현한 22193번 Multiply 문제 풀이입니다.

 

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


n, m = map(int, input().split())
a = int(input())
b = int(input())

print(a * b)

 

1. 입력받은 두 수(a, b)의 곱을 구하여 출력한다.