7 lines
88 B
Text
7 lines
88 B
Text
def reassign(x):
|
|
a = x + 5
|
|
b = a + x
|
|
a = 7
|
|
c = a + b
|
|
a = a + 5
|
|
return a + c
|