Write a function sumTo(number) that calculates the sum of the numbers 1 + 2 + ... + number. Make it with three ways: with for loop with recursion with arithmetic progression with tail recursion(*)