1 2 3 4 5 6 7 8 9 10
def alpha(value): scaled = value * 2 total = scaled + 1 return total def beta(value): scaled = value * 3 total = scaled + 2 return total