your first challenge hackerrank solution code example
Example: 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)