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