def output():

print(100)
print(50)
return
print(30)

The function "output" would print:

100
50

This is because the first two print statements are executed before the "return" statement, but the "print(30)" statement after the "return" would not be executed because the function has already returned.