Programowanie bez gałęzi Pythona

def Smaller(a, b):
    if a < b:
        return a
    else
        return b
Agreeable Alligator