Computer Science, asked by rohit454550, 11 months ago

3. What will be the output produced by following code fragment
X = 10
X = X + 10
X=X-5
print x
X, Y=X-2, 22
print X, Y​

Answers

Answered by shubham0204
3

Answer:

See below.

Explanation:

The output will be,

>>15

>>13 22

Similar questions