6 lines
115 B
Text
6 lines
115 B
Text
// only using sub, no need to flatten
|
|
def qeval(a):
|
|
b = a - 5
|
|
c = b + a + b
|
|
d = b - a - 3 - a
|
|
return d + c
|