#include<iostream>
#include<string>
using namespace std;

int main() {
    string title;
    string author;
    
    Read the title(first line)
    getline(cin, title);
    
    Read the author(second line)
    getline(cin, author);
    
    return 0;
}