0
Simple calculator
https://www.sololearn.com/discuss/2606763/?ref=app Can someone help me create a simple calculator because when I convert the strings to integers before adding they still come out as strings
7 Respostas
+ 3
x = input(6)
y = input(3)
felix = int(x) + int(y)
print(felix)
this is my code any problems?
+ 1
x = input()
y = input()
felix = int(x) + int(y)
print(felix)
0
alright but when I solve for the first test case i automatically get the second wrong without even typing a code for it
0
thank you guys so much i completed the task 👍🏾
0
Please attach your code in the question and don’t advertise others thread
https://code.sololearn.com/WRY45gFZlJTr/?ref=app
0
alright thank you
0
Already I slove first test completed,but automatically 2nd text will wrong how can I over come this problem . please help me