# Loop While #write a program that prints Hello 3 times def main(): counter = 1 while(counter<=3): print("Hello") counter=counter+1 print("value of the counter AFTER the loop ", counter) main()