def myfunction():
return 3+3
# code inside the function, but after the return line will not be executed
print("Hello, World!")
print(myfunction())