code is in notes and credits
e = "nd bad " i = "es" a = "the" h = "hedul" d = "mer a" c = "ve sum" b = "y ha" f = "sle" g = "ep sc" reasoning = "" def complex_looking_code(): # This is a function that calculates some random stuff, unrelated to the problem pointless_var = 0 useless_var = 7 math = True if 1 == (3 + 5) - 7: pointless_var = 10010 useless_var = pointless_var ay = pointless_var be = useless_var ce = ((ay*ay) + (be*be))**0.5 if (ay*ay) + (be*be) == (ce*ce): # pythagorean theorem, of course useless_var = "i'm a big string now" pointless_var = 101282913 if math: ay = "haha now i can't be used for that theorem" def actually_the_thing_you_need(): global reasoning if 1 == (3 - 2): reasoning = str(reasoning + a) if b == b: reasoning = str(reasoning + b) if (2 + 2) == (2 * 2): reasoning = str(reasoning + c) if 8 == (9 - 1): reasoning = str(reasoning + d) if (7 + 7) == 14: reasoning = str(reasoning + e) if 9.999999 == (10 - 0.000001): reasoning = str(reasoning + f) if (8 + 8) == 16: reasoning = str(reasoning + g) if (8 * 8) == 64: reasoning = str(reasoning + h) if (8 / 8) == 1: reasoning = str(reasoning + i) complex_looking_code() actually_the_thing_you_need() print(reasoning)