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