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