7 lines
137 B
Text
7 lines
137 B
Text
// only using sub, no need to flatten
|
|
def qeval(a):
|
|
b = a + 100
|
|
c = b + a + b
|
|
d = b - a - 3 - a
|
|
e = d + 3 - a
|
|
return d + c + e
|