#include <iostream>
using namespace std;

class Book {
    public:
    string title;
    string author;
    
    Book(string t,string a) {
        title = t;
        author = a;
    }
    Book(const Book &b) {
        title = b.title;
        author = b.author;
    }
};

int main() {
    string title, author;
    cin >> title >> suthor;
    
    if (title.lenght()==0||title.length()>100||author.lenght()==0||author.lenght()>100 ){
        return 0;
    }
    Book b1(title,author);
    Book b2 = b1;
     cout << "Title :" << b2.title <<"\n";
     cout << "Author:" << b2.author;
     
     return 0;
    }
}