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