Solve Me First

  • + 1 comment

    def solve(a, b): return a + b

    Sample Input

    a = 2 b = 3

    Explanation:

    The function solve(a, b) takes two integers.

    It simply returns their sum using the + operator.

    For a = 2 and b = 3, it returns 5. ✅

    Sample Output

    print(solve(a, b)) # Output: 5