number = input("Введите число: ")
matches = {"0": 6,"1": 2,"2": 5,"3": 5,"4": 4,"5": 5,"6": 6,"7": 3,"8": 7,"9": 6}
total_matches = 0
for digit in number:total_matches += matches[digit]
print(f"Для выкладывания всех цифр числа {number} понадобится {total_matches} спичек.")
number = input("Введите число: ")
matches = {
"0": 6,
"1": 2,
"2": 5,
"3": 5,
"4": 4,
"5": 5,
"6": 6,
"7": 3,
"8": 7,
"9": 6
}
total_matches = 0
for digit in number:
total_matches += matches[digit]
print(f"Для выкладывания всех цифр числа {number} понадобится {total_matches} спичек.")