문제 설명
처음 코드
def solution(numbers, n): answer = 0 for i in numbers: answer += i if answer > n: return answer