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


Model's Code:
def min_of_two(a, b):
    return a if a < b else b



Sample Correct Code:
def min_of_two( x, y ):
    if x < y:
        return x
    return y


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


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

Test 970 of 974: 742/970 (76.49484536082474%): success