#include<iostream>
#include<string>
using namespace std;
class Book {
    public:
    string title;
    string author;
    
    Book(string t, string a) {
        ititle = t;
        author = a;
    }
    Book(const Book &b) {
        title = b.title;
        author = b.author;
    }
    
};
int main() {
    string title, author;
    cin>>title;
    cin>>author
    Book b1("Harry Potter", "J.K. Rowling");
    Book b2(b1);
    cout << "Title: " << b2.title << endl;
    cout << "Author: " << b2.author << endl;

    return 0;
}