Define a function that can receive two integral numbers in string form and compute their sum and then print it in console.
Topic: Define a function that can receive two integral numbers in string form and compute their sum and then print it in console.
Solution
def sum_of_ints(s1,s2): print(int(s1)+int(s2))
List all Python Programs