def nope(x,y):
    if x > y: return
    print(x,'is no larger than', y)

rv1 = nope(1,2)
rv2 = nope(2,1)
print(rv1, rv2)