def sum_num(numbers):
    total = 0
    for x in numbers:
        total += x
    return total/len(numbers)