#include<iostream>
#include<string>
using name space std;
class book {
    public:
    string title;
    string author;
    book(string t, string a){
        if(!t.empty() && t.length() <= 100)
        title = t;
        if(!a.empty() && a.length() <= 100)
        author = t;
    }
    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: "<<b2.title<<endl;
    cout<<"Author: "<<h2.author<<endl;
    return 0;
}