0
Python: what am I doing wrong?
https://code.sololearn.com/c2Gq13TOlPK5/?ref=app If I make 10 + 3 = 103
3 Respostas
+ 4
Python input return a string. You need to convert into integers.
Like this
var = int(input ())
+ 1
What are the inputs and output you are expecting to get ?
+ 1
fixed + improved:
https://code.sololearn.com/cyOZ4NfspMip/?ref=app