def solution(numbers): answers=0 for i in range(1, 10): if i not in numbers: answers+=i return answers