def funciton1(args): {
print(args)
}
def function2(argument): {
print(argument)
#argument2 = argument + "hi"
function1(args)
function2("Hello World")