If you had a function whose header was def AnotherFunction(x,y): and the last statement of a function was return a,b,c, which of the following would call the function and store the value of a in d, the value of b in s and the value in c in t?
1) AnotherFunction(d,s,t)
2) AnotherFunction(a,b,c)
3) AnotherFunction(x,y)
4) AnotherFunction(t,s,d)