The program below demonstrates how you will complete online homework and chapter activity problems in this course. Normally, you will add your own code based on the problem requirements, but we have completed this program for you. When you run the program, the first line should display the text "HELLO" and the second line should display the text "WORLD". Here is an example of the expected program output.

HELLO
WORLD
Click the "Submit" program to submit your program for a grade. Once you have submitted, you will not be able to save any further changes unless your teacher removes your submission. Before submitting, you can run the program as many times as you like by clicking "Run Code". If your teacher has configured the course to preview attempts, you can click the "Preview" button to see a preview of your grade before submitting.

print("HELLO")

print("WORLD")