Answer:
1158
Step-by-step explanation:
a = 123
b= 456
a = b + 123 [a = 456 + 123 = 579]
b = a [b = 579]
print(b + a)
output: 1158
P.S
If the variables have string values (because they have double-quotes around them), then the answer will be very different!