def reassign(x): a = x + 5 b = a + x a = 7 c = a + b a = a + 5 return a + c