Computer Science, asked by realrashi28, 7 days ago

Anu has written the following program in Python but she is not
getting the correct output. Help her to find out the mistakes
A="5"
8="4"
C=a+b
Print (C)​

Answers

Answered by laksh080707
3

Answer:

A = "5"

B = "4"

C = A+B

print(C)

pls mark as brainlist

Answered by goswamibhawna985
3

Explanation:

A = 5

8 = 4

C = a+ b

Print = ( C)

Similar questions