6 lines
123 B
Text
6 lines
123 B
Text
// only using add, no need to flatten
|
|
def qeval(a):
|
|
b = a + 5
|
|
c = a + b + a + 4
|
|
d = a + c + a + b
|
|
return b + c + d
|