Question: 
Write a function to find maximum of two numbers.


Model's Code:
def max_of_two(a, b):
    return a if a > b else b



Sample Correct Code:
def max_of_two( x, y ):
    if x > y:
        return x
    return y


Asserts:
assert max_of_two(10,20)==20
assert max_of_two(19,15)==19
assert max_of_two(-10,-20)==-10


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 924 of 974: 709/924 (76.73160173160173%): success