You are viewing a single comment's thread. Return to all comments →
def solveMeFirst(a, b): return a + b num1 = int(input()) num2 = int(input()) res = solveMeFirst(num1, num2) print(res)
Seems like cookies are disabled on this browser, please enable them to open this website
Solve Me First
You are viewing a single comment's thread. Return to all comments →
For Python3 Platform
I wrote the code from scratch just to get more practice