public class Method2 { public static void main(String[] args) { System.out.println("There's a man who lives a life of danger"); System.out.println("To everyone he meets he stays a stranger"); System.out.println("With every move he makes, another chance he takes"); System.out.println("Odds are you won't live to see tomorrow."); System.out.println(); chorus(); System.out.println("Beware of pretty faces that you find"); System.out.println("A pretty face can hide an evil mind"); System.out.println("Be careful what you say, or you'll give yourself away"); System.out.println("Odds are you won't live to see tomorrow."); System.out.println(); chorus(); System.out.println("Swinging on the Riviera one day"); System.out.println("Lying in a Bombay alley the next day"); System.out.println("Don't let the wrong words slip while kissing persuasive lips" ); System.out.println("Odds are you won't live to see tomorrow."); System.out.println(); chorus(); } private static void chorus() { System.out.println("Secret Agent Man, Secret Agent Man"); System.out.println("They've given you a number, and taken 'way your name."); System.out.println("Secret Agent Man, Secret Agent Man"); System.out.println("They've given you a number, and taken 'way your name."); System.out.println(); } }