백준 2588 파이썬
2024. 1. 12. 15:51ㆍ코딩 도구/백준 (단계별)
반응형
백준 2588 : 곱셈
문제
https://www.acmicpc.net/problem/2588
답안 코드 :
A = int(input())
B = input()
print(A*int(B[2]))
print(A*int(B[1]))
print(A*int(B[0]))
print(A*int(B))
백준/문제/단계별로 풀어보기/1단계 입출력과 사칙연산
A = int(input())
B = input()
print(A*int(B[2]))
print(A*int(B[1]))
print(A*int(B[0]))
print(A*int(B))
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 10171 파이썬 (0) | 2024.01.13 |
---|---|
백준 11382 파이썬 (1) | 2024.01.13 |
백준 10430 파이썬 (0) | 2024.01.12 |
백준 18108 파이썬 (0) | 2024.01.11 |
백준 10869 파이썬 (2) | 2024.01.10 |