```python >>> complex_math_expression = 50 / (_ ** 2) * 2 >>> print(complex_math_expression(5)) 100.0 ``` But: ```python >>> 50 / (5 ** 2) * 2 4.0 ``` Not good :)