# Make a function that returns 'apples' if given a string,# 'oranges' if given an integer, and 'bananas' if given
# anything else.
#
# >>>> fruit_labeler(4)
# oranges
def fruit_labeler(thing):
# Add code here that returns the answer
return thing
print fruit_labeler(4)