Write a method named addUp that receives an integer as an argument, then returns the sum of all positive numbers up to and including that number.
Examples:
addUp( 5 ) --> 1 + 2 + 3 + 4 + 5 --> 15
addUp( 7 ) --> 1 + 2 + 3 + 4 + 5 + 6 + 7 --> 28
addUp(10 ) --> 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 --> 55