#include <file>
#include "file"
public int Age { get; set; }
_age
:private int _age;
public int Age
{
get => _age;
set => _age = value;
}
using namespace std;
class Student
{
public:
string name;
string last_name;
string year;
string get()
{
string s = name + ',' + last_name + ',' + year;
return s;
}
};
int main(int argc, char* argv[])
{
Student student;
student.name="Ivan";
student.last_name="Ivanov";
student.year = "2001";
vector<Student> v1;
v1.push_back(student);
cout << v1[0].get();
}