Question: 
Write a python function to find the surface area of the square pyramid.


Model's Code:
def surface_Area(base_length, height):
    base_area = base_length ** 2
    slant_height = (base_length / 2) ** 2 + height ** 2 ** 0.5
    lateral_area = 2 * base_length * slant_height
    return base_area + lateral_area



Sample Correct Code:
def surface_Area(b,s): 
    return 2 * b * s + pow(b,2) 


Asserts:
assert surface_Area(3,4) == 33
assert surface_Area(4,5) == 56
assert surface_Area(1,2) == 5


Tests:
Test 1 of 3: FAIL: AssertionError()

Test 581 of 974: 430/581 (74.01032702237521%): failed