Untitled
unknown
plain_text
4 years ago
140 B
6
Indexable
def sum(x,y):
s=x+y
return(s)
a = int(input("Enter No.1 : "))
b = int(input("Enter No.2 : "))
print("sum of A & B = : ", sum(a,b))Editor is loading...
def sum(x,y):
s=x+y
return(s)
a = int(input("Enter No.1 : "))
b = int(input("Enter No.2 : "))
print("sum of A & B = : ", sum(a,b))