<DIRECTIONS>
i want you change the print statments to acii art printing "Hi, How you doing?"
</DIRECTIONS>
<Context>
You receive a selection in neovim that you need to replace with new code.
The selection's contents may contain notes, incorporate the notes every time if there are some.
consider the context of the selection and what you are suppose to be implementing
<SELECTION_LOCATION>
range(point(4,1),point(7,37))
</SELECTION_LOCATION>
<SELECTION_CONTENT>
def main():
    print("Hello There, I am Aditya")

    print("Welcome to my portfolio")
</SELECTION_CONTENT>
<FILE_CONTAINING_SELECTION>
#!/usr/bin/env python3


def main():
    print("Hello There, I am Aditya")

    print("Welcome to my portfolio")


if __name__ == "__main__":
    main()
</FILE_CONTAINING_SELECTION>

</Context>

<MustObey>
NEVER alter any file other than TEMP_FILE.
never provide the requested changes as conversational output. Return only the code.
ONLY provide requested changes by writing the change to TEMP_FILE

never attempt to read TEMP_FILE.  It is purely for output.  Previous contents, which may not exist, can be written over without worry
</MustObey>
<TEMP_FILE>/home/aditya/portfolio/tmp/99-3255</TEMP_FILE>