def do_one():
    print 1


def do_two():
    print 2


huita = False

do_one() if huita else do_two()