#include<iostream>
using namespace std;
int main(){
    char title[100];
    char author[100];
    
    cin<<title<<author;
    cout<<"Title: "<<title<<endl;
    cout<<"Author: "<<author;
}