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

[백준/파이썬] 6856번 Roll the Dice

by 현장 2025. 2. 6.

-Code

m = int(input())
n = int(input())
cnt = 0

for i in range(1, m + 1):
    for j in range(1, n + 1):
        if i + j == 10:
            cnt += 1

if cnt == 1:
    print("There is 1 way to get the sum 10.")
else:
    print(f"There are {cnt} ways to get the sum 10.")