1 2 3 4 5 6 7 8 9 10 11 12 13
def first(value): total = value + 1 return total def second(value): total = value + 2 return total def third(value): total = value + 3 return total