Write a program (using Python) that will determine if one number divided by another divides evenly or not, without using the % operator. Return either "evenly" or "not evenly".
def template(n1, n2):
number1 = n1 # This gets the first number from the user and stores it in a memory location called number1
number2 = n2
result = "fixme"
return result
# END OF YOUR CODE