I write this code:
a=5
b=4
s=a*b
print(s)
20
then I changed variable "a" to 6:
a=6
print(s)
20
I changed variable "a" and when i say print(a)
it shows new variable(6) but when I say print(s)
it shows the same number(20)
I wonder why this happens. I expected it shows me s=24 but why it shows 20 again?