Write definitions for the following two functions:
  1. sumN(n) returns the sum of the first n natural numbers.
  2. 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()