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 )
2 Respostas
+ 1
Khadeejah Fahm
Input is not fixed. So don't write hard code. Take input from user and add them.
0
ina = int(input())
inb = int(input())
res = ina + inb
print(res)