https://www.acmicpc.net/problem/2739
풀이
a = int(input())
for i in range(0, 9):
i += 1
print(f"{a} * {i} =",a*i)
'Python > Baekjoon' 카테고리의 다른 글
백준 8393번 : 합 (0) | 2022.10.06 |
---|---|
백준 10950번 : A+B - 3 (0) | 2022.10.06 |
백준 2480번 : 주사위 세개 (0) | 2022.10.06 |
백준 2525번 : 오븐 시계 (0) | 2022.10.06 |
백준 2884번 : 알람 시계 (0) | 2022.10.06 |