Q:

solve me first hackerrank solution in python

def solveMeFirst(a,b):
	# Hint: Type return a+b below
	return a+b

num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
1
def solveMeFirst(a,b):
	# Hint: Type return a+b below


num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
0

New to Communities?

Join the community