6 lines
126 B
Text
6 lines
126 B
Text
// this code needs flattening
|
|
def main(a):
|
|
b = a + 5 + a * a
|
|
c = b + a + a * b * b
|
|
d = a * b + c * c
|
|
return b + c + d
|