2 Answers
New Answer2 Answers
New Answeryou need to use print statement. x= 3 y = 2 result = x+y print(result) if your code requires multiple inputs, you insert any data each line x = int(input ("Number 1: ") y = int(input ("Number 2: ") result = x+y print(result) you should input this way: 3 2
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message