Usually these require you to simplify or improve the code, but not here.
I want you to make 108+3 to be as complicated as possible
no limitations as long as the result stays the same
and remember if you know how to mess something up you know how to fix someone elses mess
def bestCodeEver():
bestNumber = 108 + 3
return bestNumber
import codewars_test as test
# TODO Write tests
import solution # or from solution import example
# test.assert_equals(actual, expected, [optional] message)
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(1 + 1, 2)