public class StarSpangledBanner {
   /**
	 * print 1st verse
	 */
   public static void printVerse1() {
	   System.out.println("Oh, say can you see by the dawn's early light");
	   System.out.println("What so proudly we hailed at the twilight's last gleaming?");
	   System.out.println("Whose broad stripes and bright stars thru the perilous fight,");
	   System.out.println("O'er the ramparts we watched were so gallantly streaming?");
	   System.out.println("And the rocket's red glare, the bombs bursting in air,");
	   System.out.println("Gave proof through the night that our flag was still there.");
	   System.out.println("Oh, say does that star-spangled banner yet wave");
	   System.out.println("O'er the land of the free and the home of the brave?");
	}
   /**
	 * print 2nd verse
	 */
   public static void printVerse2() {
	   System.out.println("On the shore, dimly seen through the mists of the deep,");
	   System.out.println("Where the foe's haughty host in dread silence reposes,");
	   System.out.println("What is that which the breeze, o'er the towering steep,");
	   System.out.println("As it fitfully blows, half conceals, half discloses?");
	   System.out.println("Now it catches the gleam of the morning's first beam,");
	   System.out.println("In full glory reflected now shines in the stream:");
	   System.out.println("'Tis the star-spangled banner! Oh long may it wave");
	   System.out.println("O'er the land of the free and the home of the brave!");
	}
   /**
	 * print 3rd verse
	 */
   public static void printVerse3() {
	   System.out.println("And where is that band who so vauntingly swore");
	   System.out.println("That the havoc of war and the battle's confusion,");
	   System.out.println("A home and a country should leave us no more!");
	   System.out.println("Their blood has washed out their foul footsteps' pollution.");
	   System.out.println("No refuge could save the hireling and slave");
	   System.out.println("From the terror of flight, or the gloom of the grave:");
	   System.out.println("And the star-spangled banner in triumph doth wave");
	   System.out.println("O'er the land of the free and the home of the brave!");
	}
   /**
	 * print 4th verse
	 */
   public static void printVerse4() {
	   System.out.println("Oh! thus be it ever, when freemen shall stand");
	   System.out.println("Between their loved home and the war's desolation!");
	   System.out.println("Blest with victory and peace, may the heav'n rescued land");
	   System.out.println("Praise the Power that hath made and preserved us a nation.");
	   System.out.println("Then conquer we must, when our cause it is just,");
	   System.out.println("And this be our motto: \"In God is our trust.\"");
	   System.out.println("And the star-spangled banner in triumph shall wave");
	   System.out.println("O'er the land of the free and the home of the brave!");	
	}
   public static void main(String[] args) {
	   StarSpangledBanner.printVerse1();
		System.out.println();
	   StarSpangledBanner.printVerse2();
		System.out.println();
	   StarSpangledBanner.printVerse3();
		System.out.println();
	   StarSpangledBanner.printVerse4();
	}
}