
def fun_a(x, y):
    return x + y

def fun_b(x, y):
    z = fun_a(x,y)
    return "test", z
    
fun_b(2, 3)
