#include <iostream>
#include <string>
#include <locale.h>
using namespace std;
struct student {
string surname;
int group;
int physics;
int math;
int algebra;
int chemistry;
};
int main()
{
setlocale(LC_ALL, "");
student alex;
alex.surname = "Агеев";
alex.algebra = 5;
alex.chemistry = 3;
alex.group = 1205;
alex.math = 4;
alex.physics = 4;
cout << "Фамилия: " << alex.surname << endl << "Группа: " << alex.group << endl << "Физика: " << alex.physics << endl << "Матан: " << alex.math << endl << "АиГ: " << alex.algebra << endl << "Химия: " << alex.chemistry;
}