██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗██╗ ██╗ ██╔══██╗██╔══██╗██╔═══██╗██╔══██╗██║ ██║██╔═══██╗██╔════╝██║ ██║ ██████╔╝██████╔╝██║ ██║██║ ██║███████║██║ ██║███████╗███████║ ██╔═══╝ ██╔══██╗██║ ██║██║ ██║██╔══██║██║ ██║╚════██║██╔══██║ ██║ ██║ ██║╚██████╔╝██████╔╝██║ ██║╚██████╔╝███████║██║ ██║ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝
#include <iostream>
#include <vector>
#include <string>
class Developer {
public:
std::string name = "Prodhosh";
std::string role = "Student Developer";
std::string location = "India 🇮🇳";
std::vector<std::string> passions = {
"Data Science",
"Web Development",
"Problem Solving",
"Building Cool Stuff"
};
std::string motto() {
return "Trust the Process! 💪";
}
void sayHi() {
std::cout << "Thanks for stopping by! Let's connect! 👋" << std::endl;
}
};
int main() {
Developer me;
me.sayHi();
return 0;
}





