Solve Me First

  • + 0 comments

    For Python3 Platform

    I wrote the code from scratch just to get more practice

    def solveMeFirst(a, b):
        return a + b
    
    num1 = int(input())
    num2 = int(input())
    
    res = solveMeFirst(num1, num2)
    
    print(res)