def print_name(name): # Print the name print("The name is:", name) def main(): name = "Ali" # You can replace this with any name print_name(name)