#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
	cout << "There's a man who leads a life of danger\n"   //verse 1
		<< "To everyone he meets he stays a stranger\n"
		<< "With every move he makes, another chance he takes\n"
		<< "Odds are he won't live to see tomorrow.\n\n";

	cout << "\tSecret Agent Man, Secret Agent Man\n"   //chorus
		<< "\tThey've given you a number, and taken 'way your name.\n\n";

	cout << "Beware of pretty faces that you find\n"   //verse 2
		<< "A pretty face can hide an evil mind\n"
		<< "Be careful what you say, or you'll give yourself away\n"
		<< "Odds are you won't live to see tomorrow.\n\n";

	cout << "\tSecret Agent Man, Secret Agent Man\n"   //chorus
		<< "\tThey've given you a number, and taken 'way your name.\n\n";

	//guitar solo

	cout << "\tSecret Agent Man, Secret Agent Man\n"   //chorus
		<< "\tThey've given you a number, and taken 'way your name.\n\n";

	cout << "Swinging on the Riviera one day\n"   //verse 3
		<< "Lying in a Bombay alley the next day\n"
		<< "Oh no, you let the wrong words slip while kissing persuasive lips\n"
		<< "Odds are you won't live to see tomorrow.\n\n";

	cout << "\tSecret Agent Man, Secret Agent Man\n"   //chorus
		<< "\tThey've given you a number, and taken 'way your name.\n\n";

	cout << "Secret Agent Man.\n";
	return EXIT_SUCCESS;
}