
Question: Create a program that, once executed the programs prints Hello instantly first, then it prints it after 1 second, then after 2, 3, and then the program prints out the message "End of the Loop" and stops.
Expected output:
Hello Hello Hello Hello End of Loop

Hint: Include an if statement inside the loop and a break statement inside the conditional.