using System;
public class Program
{
public static void Main()
string input; // declares the string name
Console.WriteLine("Please enter a word"); // makes the string whatever the user inputs
input = Console.ReadLine();
for (int i = 0; i< input.Length; i++) // makes the code run aslong as however many letters are in the string
Console.WriteLine(input = input.Remove(0, 1) + input.Substring(0, 1)); // removes the starting letter in the string and then puts on the end of the string
}