Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Last active September 10, 2023 02:53
Show Gist options
  • Select an option

  • Save codeperfectplus/2c713e888bad386dd943b8e0bb4a03b2 to your computer and use it in GitHub Desktop.

Select an option

Save codeperfectplus/2c713e888bad386dd943b8e0bb4a03b2 to your computer and use it in GitHub Desktop.
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