13 lines
154 B
Text
13 lines
154 B
Text
// comment
|
|
|
|
// comment
|
|
|
|
def main(x):
|
|
// comment
|
|
y = x**3
|
|
b = x**5
|
|
|
|
c = x / 2
|
|
d = (2 * x + 3 * b) * (x - b)
|
|
return y + x + y + c + d
|
|
// comment
|