Write a Python program that continually asks the user for numbers until the user enters ‘stop’. The program should then output the maximum and minimum numbers entered.
Example 1:
Input: numbers = 5, 2, 9, 1, 'stop'
Output: Max = 9, Min = 1
Example 2:
Input: numbers = 7, 8, 10, 3, 4, 'stop'
Output: Max = 10, Min = 3