def product(a,b):
c=a+b
return c
x=int(input("enter product"))
y=int(input(("enter price"))
print(product(x,y))
def product(a,b):
c = a + b
return c
x = int(input('enter product'))
y = int(input('enter price'))
print(product(x,y))
enter product50
enter price90
140
Comments
Leave a comment