// editor1
#include<iostream>
using namespace std;
class book
{
    string title,author;
    book(string t,string a)
{
    title=t;
    author=a;
}
    book(book &b)
    {
        title=b.title;
        author=b.author;
    }
    void display()
    {
        cout<<"Title: "<<title<<endl;
         cout<<"Author: "<<author<<endl;
    }
};
int main()
{
    string t,a;
    cin>>t;
    cin>>a;
    book b1(t, a);
    book b2(b1);
    b2.display();
}