solve me first hackerrank solution in python

Solutions on MaxInterview for solve me first hackerrank solution in python by the best coders in the world

showing results for - "solve me first hackerrank solution in python"
Angelo
12 Jun 2019
1def solveMeFirst(a,b):
2	# Hint: Type return a+b below
3	return a+b
4
5num1 = int(input())
6num2 = int(input())
7res = solveMeFirst(num1,num2)
8print(res)