
Question: Create a program that, once executed the program prints Hello instantly first, then it prints it after 1 second, then after 2, 3, 4, and so on the interval increases between prints.
Expected output:
... Hello Hello Hello Hello Hello Hello ...

Hint: Like the previous program, but you need a counter here like i = i + i .