Blog

What is the output for the below code?

def add(number_1, number_2=3):
result = number_1 + number_2
return result
x = add(50)