#include<iostream>
using namespace std;
class Student {
    private:
    string name;
    int age;
    public:
    void display(){
        cin >> name >> age;
        cout <<"Name: " <<name" "<<endl;
        cout <<"Age: " <<age<<" "<<endl;
    }
};
int main(){
Student s;
s.display();
return 0;
}