# your code goes here
from os import path
import inspect
def myfunction():
print(inspect.currentframe().f_code.co_name, path.basename(__file__))
print(f"{inspect.currentframe().f_code.co_name} {path.basename(__file__)}")
print("{} {}".format(inspect.currentframe().f_code.co_name, path.basename(__file__)))
myfunction()
IyB5b3VyIGNvZGUgZ29lcyBoZXJlCmZyb20gb3MgaW1wb3J0IHBhdGgKaW1wb3J0IGluc3BlY3QKCgpkZWYgbXlmdW5jdGlvbigpOgogICBwcmludChpbnNwZWN0LmN1cnJlbnRmcmFtZSgpLmZfY29kZS5jb19uYW1lLCBwYXRoLmJhc2VuYW1lKF9fZmlsZV9fKSkKICAgcHJpbnQoZiJ7aW5zcGVjdC5jdXJyZW50ZnJhbWUoKS5mX2NvZGUuY29fbmFtZX0ge3BhdGguYmFzZW5hbWUoX19maWxlX18pfSIpCiAgIHByaW50KCJ7fSB7fSIuZm9ybWF0KGluc3BlY3QuY3VycmVudGZyYW1lKCkuZl9jb2RlLmNvX25hbWUsIHBhdGguYmFzZW5hbWUoX19maWxlX18pKSkKCgpteWZ1bmN0aW9uKCk=