def f():
    s = "-- Inside f()"
    print(s)


print("Before calling f()")
f()
print("After calling f()")
