██████╗ ██████╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗███████╗██╗ ██╗██╗ ██╗
██╔══██╗██╔══██╗██║╚██╗ ██╔╝██╔══██╗████╗ ██║██╔════╝██║ ██║██║ ██║
██████╔╝██████╔╝██║ ╚████╔╝ ███████║██╔██╗ ██║███████╗███████║██║ ██║
██╔═══╝ ██╔══██╗██║ ╚██╔╝ ██╔══██║██║╚██╗██║╚════██║██╔══██║██║ ██║
██║ ██║ ██║██║ ██║ ██║ ██║██║ ╚████║███████║██║ ██║╚██████╔╝
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝ ╚═════╝
#include <iostream>
#include <vector>
using namespace std;
class PriyanshuKumar {
public:
vector<string> domains = {
"Machine Learning",
"Problem Solving",
"Quantitative Research",
"Backend Systems",
"API Development"
};
vector<string> stack = {
"C++",
"Python",
"Java",
"MySQL"
};
vector<string> interests = {
"Optimization",
"System Design",
"Data Driven Engineering",
"Scalable Infrastructure"
};
string current_focus =
"Building reliable systems and improving analytical depth";
void initialize() {
cout << "Build. Iterate. Optimize." << endl;
}
};
int main() {
PriyanshuKumar dev;
dev.initialize();
}

