Respuesta :

Answer:

23

Explanation:

Given

print('2' + '3')

Required

The output

First, the expression in bracket is evaluated.

'2' + '3' = '23' i.e. The + concatenates '2' and '3'

So, the statement becomes

print('23')

The above statement prints the expression in quotes.

Hence, the output is 23

Answer:

23

Explanation: