#include<iostream>
using namespace std;
int main(){
    string title , author;
    cin >> title >> author;
    if( 1 <= title.legth <= 100 && 1 <= author.length <= 100){
        cout << "Title:" << title;
        cout << "Author:" << author;
    }
}