Answer
5
23
Work Step by Step
sum = 2 + 3
print(sum)
s = '2' + '3'
print(s)
step 1:
addition of 2,3 and assignment into sum variable
step 2:
print the sum on screen
step 3:
concatenate the 2 , 3 as string
step 4:
print the content of s variable
-$Output$
5
23