Write a program that asks the user for two integers, then determines and prints out the max of the two. To determine the max, you need to define and call a function named max() that returns the max of two numbers that are passed in as parameters.
1. Function Definition
A. def max(a, b):
B. return a if a > b else b
C. a = int(input(“Enter first number: “))
D. b = int(input(“Enter second number: “))
E. max_result = max(a, b)
F. print(“The max is:”, max_result)
2. User Input
A. Enter first number
B. Enter second number
C. The max is
D. max
3. Output
A. Integer
B. Float
C. String
D. None
4. Errors
A. TypeError
B. ValueError
C. IndentationError
D. All of the above