[구현/수학] 백준 22193 Multiply - 파이썬(Python)


[구현/수학] 백준 22193 Multiply - 파이썬(Python)

[ Contents ] 1. 문제 (링크 참조) 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 2. 문제 풀이 두 수를 곱하는 문제입니다. 3. 코드 import sys input = sys.stdin.readline # 입력 N, M = map(int, input().split()) a = int(input()) b = int(input()) # 출력 print(a*b) 파이썬에서는 N, M 자릿수..


원문링크 : [구현/수학] 백준 22193 Multiply - 파이썬(Python)