Find and write the output of the following Python code:
def Change(P ,Q=30):
P=P+Q
Q=P-Q
print( P,"#",Q)
return (P)
R=150
S=100
R=Change(R,S)
print(R,"#",S)
S=Change(S)
Answer:
The output of the given code is:
250 # 150
250 # 100
130 # 100