# My Custom Functions def myCalcMultiple(x,y): z = x * y print(z) #20 def myCalcDivide(x,y): z = x / y print(z) def reportHeader(): print("Calcuated Values") print("----------------") print() def reportFooter(): print() print("End of Report") def footer(): print() print("=====================\nContact Philip at philipm@onlc.com\nWebsite: philipmatusiak.com") print() def fullName(): first_name = input("Enter first name: ") last_name = input("Enter last name:") full_name = first_name + " " + last_name return full_name # philip matusiak