#include<iostream>
#include<string>
using namespace std;
int main(){
    string title,author;
    if(cin>>title>>author){
        if(title.length()> 0 && title.length() <=100 && author.length()>0 && author.lenght()<=100){
            cout<<"Title: "<<titloe<<endl;
            cout<<"Author: "<<auhtor<<endl;
        }
    }
    return 0;
}