Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Last active September 10, 2023 02:53

Revisions

  1. codeperfectplus revised this gist Sep 10, 2023. No changes.
  2. codeperfectplus created this gist Sep 10, 2023.
    9 changes: 9 additions & 0 deletions solve-me-first-problem-solving-in-python.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    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)