본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]22193번 Multiply

by 현장 2021. 7. 6.

-코드

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