# Make a function that returns either "big" or "small"
# if the one argument is more than 10 or not.
x = big(3)
print(x) # should print "small"
x = big(11)
print(x) # should print "big"
x = big(10)
print(x) # should print "small"



# Make a function that returns a list of decimals from 1..n
# See the examples
x = decimals(3)
print(x)  # Should be [0.1, 0.2, 0.3]
x = decimals(6)
print(x)  # Should be [0.1, 0.2, 0.3, 0.4, 0.5, 0.6]
x = decimals(-3)
print(x)  # Should be []

# Make a function that prints the right component of each sublist
# I don't care if they are all on one line or several.
l = [[1,2], [3,4], [7,2]]
rightmost(l)  # should print 2, 4, 2
l = [['monkey', 'ape'], ['cat', 'dog'], ['rock', 'stone']]
rightmost(l)  # should print ape, dog, stone
l = []
rightmost(l) # should print nothing
