#include <iostream>
#include <string>

int main()
{
  for (int i = 1; i <= 5; i++)
  {
    std::cout << "Wiederholung Nr. " << i << std::endl;
  }
  return 0;
}
