Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Last active September 10, 2023 02:53
def solveMeFirst(a:int,b:int):
# Hint: Type return a+b below
return a + b
num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment