tu hi hai aashiqui song lyrics

#include <iostream>
#include <string>

int main() {
    // Declare and initialize the lyrics of the song
    std::string tuHiHaiAashiqui = "Tu hi hai aashiqui, tu hi awaaragi\nTu hi hai zindagi, tu hi judaa";

    // Display the lyrics to the console
    std::cout << "Song Lyrics:\n" << tuHiHaiAashiqui << std::endl;

    // Return 0 to indicate successful execution
    return 0;
}