# RQ3
def largest_factor(n):
"""Return the largest factor of n that is smaller than n.
>>> largest_factor(15) # factors are 1, 3, 5
5
>>> largest_factor(80) # factors are 1, 2, 4, 5, 8, 10, 16, 20, 40
40
"""
"*** YOUR CODE HERE ***"
# RQ4
# Write functions c, t, and f such that calling the with_if_statement and
# calling the with_if_function do different things.
# In particular, write the functions (c,t,f) so that calling with_if_statement function returns...