/**
 * For04 - Practicing using loops and printing
 *       - Add beautifying blank space and line numbers
 * @author Kathryn
 * @version January 26 2007
 */
public class Song
{

    public static void main(String [] args)
    {
        // verse
        System.out.println("You are going to bring yourself down.");
    
        //chorus 
        for (int i = 0; i < 10; i++) {
            System.out.println("I've got soul, but I'm not a soldier.");
        }           

        //verse
        System.out.println("Yah yah, you got to help me out.");     
    }
}