The Sum of 2

Report a typo

Implement a function get_sum(a, b) that will return the sum of two numbers.

Don't bother about input/output. You just have to implement the function which will return a value. Please, do not rename the function.

Sample Input 1:

8 11

Sample Output 1:

19
Write a program in Python 3
# implement the function below
def get_sum(a, b):
pass
___

Create a free account to access the full topic