// Version of If I Had a Boat by Lyle Lovett with decomposition
public class Boat2 {

	public static void main(String[] args) {
		chorus();
		verse1();
		chorus();
		verse2();
		chorus();
		verse3();
		chorus();
		ending();
	}

	public static void chorus() {
		System.out.println("If I had a boat");
		System.out.println("I'd go out on the ocean");
		System.out.println("And if I had a pony");
		System.out.println("I'd ride him on my boat");
		System.out.println("And we could all together");
		System.out.println("Go out on the ocean");
		System.out.println("I said me upon my pony on my boat");
		System.out.println();
	}

	public static void verse1() {
		System.out.println("If I were Roy Rogers");
		System.out.println("I'd sure enough be single");
		System.out.println("I couldn't bring myself to marrying an old Dale");
		System.out.println("Well, it'd just be me and Trigger");
		System.out.println("We'd go riding through them movies");
		System.out.println("Then we'd buy a boat and on the sea we'd sail");
		System.out.println();
	}

	public static void verse2() {
		System.out.println("The mystery masked man was smart");
		System.out.println("He got himself a Tonto");
		System.out.println("\'Cause Tonto did the dirty work for free");
		System.out.println("But Tonto he was smarter");
		System.out.println("And one day said kemo sabe");
		System.out.println("Well, kiss my ass, I bought a boat");
		System.out.println("I'm going out to sea");
		System.out.println();
	}

	public static void verse3() {
		System.out.println("And if I were like lightning");
		System.out.println("I wouldn't need no sneakers");
		System.out.println("I'd come and go wherever I would please");
		System.out.println("And I'd scare 'em by the shade tree");
		System.out.println("And I'd scare 'em by the light pole");
		System.out.println("But I would not scare my pony on my boat out on the sea");
		System.out.println();
	}

	public static void ending() {
		System.out.println("I said me upon my pony on my boat");

	}
}