I need help with code coach: simple calculator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need help with code coach: simple calculator

What's wrong here # your code goes here num1= (6+3) print(num1 ) #second code code two num2 =(11+22) print (num2 )

3rd Jan 2021, 12:52 PM
خديجة
خديجة - avatar
2 Answers
+ 1
Khadeejah Fahm Input is not fixed. So don't write hard code. Take input from user and add them.
3rd Jan 2021, 12:59 PM
A͢J
A͢J - avatar
0
ina = int(input()) inb = int(input()) res = ina + inb print(res)
3rd Jan 2021, 5:31 PM
JaScript
JaScript - avatar