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