Write a function called line_numberthat takes as parameters two strings representing file names. Assume these are text files. The function reads the file indicated by the first parameter and writes its lines prefixed by the line number to the file represented by the second parameter.The function must have a proper docstring and annotations. Use try/except and in case of an error print a user-friendly message to the terminal and re-raise the exception.