#include<iostream>
using namespace std;

class Book{
    public:
    string Title;
    string Author;
    Book (string t, string a){
        Title = t;
        Author = a;
    }
    Book(const Book &b){
        Title = b.title;
        Author = b.author;
    }
    void display(){
        cout<<"Title:" <<Title<<endl;
        cout<<"Author:" <<Author<<endl;
    }
};

int main(){
    string Title, Author;
    cin>>Title>>Author;
    Book orginal(Title, Author);
    Book copied (orginal);
    copied.display();
    return 0;
}