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