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