#include <iostream>
int main() {
const bool experimental = true;
const int year = 2026;
std::cout << "Valentina\n";
std::cout << "engineering student\n";
std::cout << (experimental ? "learning by building" : "stable mode")
<< " · " << year << "\n";
}💻 Currently learning

