#include<iostream>
#include <string>
using namespace std;
int main()
{
    string title, author;
    getline(cin, title);
    getline(cin, author);
    cout << "Title:  " <<  titlem <<end;
    cout <<"Author:  " <<  author <<endl;
    return 0;
}