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