# Refresher Challenge This assignment is almost the same as [A Refresher](a-refresher.md). Write a program that prompts the user for a name. Then display that name ten times using a loop. However, if the name given is `"Harambe"`, display it only five times. So here's the challenge: write the program using only *one* `if` statement (no `else`) and only *one* `for` loop. Name the file `refresher2.py` ``` Your name: gump gump gump gump gump gump gump gump gump gump gump ```   ``` Your name: Harambe Harambe Harambe Harambe Harambe Harambe ``` --- ©2021 Daniel Gallo This assignment is licensed under a [Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License](https://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US). ![Creative Commons License](images/by-nc-sa.png) Adapted for Python from Graham Mitchell's [Programming By Doing](https://programmingbydoing.com/)