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