def print_name(name): # Print the name print("The name is:", name) def main(): # Call the function with a name print_name("Ali")