-1
print ("Naomi's Calculator!")

print("Addition")

value_1= 10
value_2= 15
working= (value_1 "+" value_2)
print(working)

result=(value_1+value_2)
print(result)

working variable is wrong, i want the result to be like 10+15

kloudy
  • 1

1 Answers1

0

value_1 and value_2 are int, you need to convert them in string if you want to see that output for working variable.

working = (str(value_1)+"+" +str(value_2))
Guy
  • 46,488
  • 10
  • 44
  • 88
Carambol4
  • 1
  • 1