# Make a function that returns either a 7 or it's one
# argument, which ever is bigger.

x = maybeSeven(7)
print(x)
x = maybeSeven(8)
print(x)
x = maybeSeven(-9)
print(x)

# Make a function that returns a list of squares from 1..n
x = squares(3)
print(x)  # Should be [1,4,9]
x = squares(6)
print(x)  # Should be [1,4,9,16,25,36]
x = squares(-3)
print(x)  # Should be []

# Make a function that prints the given list backwards
# I don't care if they are all on one line or several.
backwards([1,3,'four']) # Should print four, 3, 1
backwards([1,2,3,4,5])  # Should print 5,4,3,2,1
backwards([])  # Should print nothing



