# last_name, first_name
# 11/30/2015
# IntroCS A

print("hello world")

def my_function(name):
	print("hello world, " + name)

my_function("Susan")