#include <iostream>
#include <string>
#include <stdlib.h>

using namespace std;

int main(void) 
{							   	
	struct Student {
		string name;
		string matrix;
		int age;
	};
	
	Student student;
	
	cout << "Enter student name: ";
	getline(cin, student.name);
	
	cout << "Enter student matrix: ";
	getline(cin, student.matrix);
	
	cout << "Enter student age: ";
	cin >> student.age;
	
	cout << endl;
	
	cout << "Student name: " << student.name << endl;
	cout << "Student matrix: " << student.matrix << endl;
	cout << "Student age: " << student.age << endl;	
	
    return 0;
} 
