Answer:
Written in Python
age = int(input("How old are you? "))
for i in range(1,age+1):
print("**HUG**")
Explanation:
The first line prompts the user for age
age = int(input("How old are you? "))
The next line is an iteration that starts from 1 till the user input
for i in range(1,age+1):
The last line prints "**HUG**" while the iteration is true
print("**HUG**")
I belive its true but i am not a 100% sure
By email or publishing on the internet, I hope that helps!
To improve readability, use white
text on a dark green background but <span>the darker text on a lighter background
was rated more readable than lighter text on dark backgrounds according to
survey in every color combination. Example, red text on white background is
more readable than white text on red background.</span>
I don't think some will write the whole program here, but which part are you having trouble with?