If I have this
def fun1:
a = 2
b = 3
return a
return b #problem is here
def fun2:
c = fun1()
print(fun1())
I want to return a be a default return and fun1 return a to every other functions but return b only works for returning to fun2 and nowhere else