56.5k views
2 votes
Predict the output a b= 12 13 print(print(a+b)) ​

1 Answer

5 votes

Answer:

Invalid Syntax

We if correct the syntax then output is 25

Step-by-step explanation:

In the given question a=12 ,b=13 if we used print(print(a+b)) ​ this syntax then invalid syntax will occur if we correct the syntax then correct syntax program is given below

a =12

b=13

print(a+b)

it gives 25 as output because we used "+" operator between a and b variable this operator provide addition between the two variable .

User Agus Puryanto
by
6.1k points