1 # Return the max between two numbers 2 def max(num1, num2): 3 if num1 > num2: 4 result = num1 5 else: 6 result = num2 7 8 return result 9 10 def main(): 11 i = 12 j = 13 k = max(i, j) # Call the max function 14 print("The maximum between", i, "and", j, "is", k) 15 16 main() # Call the main function