Which function will return the result of adding two parameters?

a. def default(x, y): return x + y
b. def default(): x= 0 y=0 return x+y
c. def my_func(default=0, default2=0): return default + default 3
d. def my_func(): default = 0 default2 = 0 return default+default2