#What is the output of the following code?

def fcn(x,y):
    if x > y: 
        return x*y+fcn(x-1,y)
    return 7

#Run in interactions pane below
#>>>fcn(5,2)
