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