Find the output generated by the following code:
(a) x=2
y=3
x+=y
print(x,y)
(b) x=8
y=2
x+=y
y-=x
print(x,y)
(c) a=5
b=10
a+=a+b
b*=a+b
print(a,b)
(d) p=10
q=20
p*=q//3
q+=p+q**2
print(p,q)
(e) p=5/2
q=p*4
r=p+q
p+=p+q+r
r+=p+q+r
q-=p+q*r
print(p,q,r)
(f) p=2/5
q=p*4
r=p*q
p+=p+q-r
r*=p-q+r
q+=p+q
print(p,q,r)