#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
    }
    
};
int main(){
    string t,a;
    cin>>t>>a;
    
    bookb1(t,a)
    bookb2=b1;
    
    cout<<"Title:"<<b2.title<<endl;
    cout<<"Author:"<<b2.author<<endl;
}