// editor1
#include <iostream>
using namespace std;
class book{
  public:
  string title;
  string author;
  
  book(string t,string a){
      title=t;
      author=a;
  }
  book(const book&ba){
      title=b.title;
      author=b.author;
  }
  void display({
      cout<<"Title:"<<title<<endl;
      cout<<"Author:"<<author<<endl;
  }
};
intmain(){
    string title,author;
    cin>>title>>author;
    book original(title,author);
    book copied(original);
    copied.display();
    return 0;
}