#include #include using namespace std; // Function declaration for the chorus void chorus(); int main() { // Verse 1 cout << "Waking up to the morning light\n" << "Chasing dreams that take their flight\n" << "Every step I take, a brand new way\n" << "Bringing hope to the break of day.\n\n"; chorus(); // Call the chorus function // Verse 2 cout << "Through the clouds, I see the sun\n" << "Guiding me till the day is done\n" << "Even when the night is near\n" << "I will face it without fear.\n\n"; chorus(); // Call the chorus function // Verse 3 cout << "When the stars light up the sky\n" << "Whispers of dreams passing by\n" << "With every heartbeat, I know it's true\n" << "The strength inside will see me through.\n\n"; chorus(); // Call the chorus function one more time cout << "Let the music carry on.\n"; return EXIT_SUCCESS; } // Function definition for the chorus void chorus() { cout << "\tShine on, shine bright\n" << "\tLet your heart ignite\n" << "\tWith every step, you'll see\n" << "\tA world of endless possibility.\n\n"; }