Respuesta :

I've included my code in the picture below. Best of luck.

Ver imagen Cytokine

Following are the program to the given question:  

Program Explanation:

  • Defining an "age" variable that uses the "int with input" method that inputs integer value from the user-end.
  • After input value, a for loop is declared that uses the "age" variable and calculates its value, and prints the value with the message that is "**HUG**".

Program:

age=int(input())#defining an age variable that inputs integer value

for i in range(1, age+1):#defining a for loop that count input value  

print("**HUG**")#print message

Output:

Please find the attached file.

Learn more:

brainly.com/question/17796174

Ver imagen codiepienagoya