Solve Me First

  • + 0 comments

    For Python3 Platform

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