Write a function powers that prints out all positive integers n such that 3n is smaller than a given number m. the value for m should be passed as a parameter.
for example:
Test Results
powers(100) 1 2 3 4