0
Why will my Simple Calculator code not work?[Solved]
I have the following code and when I hit run it says that the output is incorrect for the simple calculator practice on python.Any ideas would be appreciated. a=int(input(âFirst Numberâ)) b=int(input(âSecond Numberâ)) c=a+b print(c)
1 Answer
0
Dylan Barker
Remove the promt strings inside input().