Apr-17-2017, 07:33 AM
Hi, I'm new with using python and I need a help. I´m trying to write a code for sum function. A user input 2 numbers and answer is a sum of them. I wrote this:
def suma(a,b): print(a+b) x=int(input('the first number')) y=int(input('the second number')) print(suma(x,y))Thanks for help