출처
https://www.acmicpc.net/problem/10998
10998번: A×B
두 정수 A와 B를 입력받은 다음, A×B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
문제
풀이
1000번 문제와 똑같은 방법으로 풀이(map,input,split)
코드
A,B = map(int,input().split())
print(A*B)
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 10926번: ??! - [Python] (0) | 2022.02.17 |
---|---|
[백준] 10869번: 사칙연산 - [Python] (0) | 2022.02.16 |
[백준] 1001번: A-B - [Python] (0) | 2022.02.16 |
[백준] 1000번: A+B - [Python] (0) | 2022.02.16 |
[백준] 10172번: 개 - [Python] (0) | 2022.02.15 |