Write definitions for the following two functions:
- sumN(n) returns the sum of the first n natural numbers.
- sumNCubes(n) returns the sum of the cubes of the first n natural
numbers.
Then test these functions with the following program.
def main():
print( sumN(5), sumNCubes(5) )
main()