#include<iostream>
#include<string>
using Namespsce std;

int main(){
    string title author;
    cout << "Enter book title:";
    getline(cin,title);
    cout << "Enter author name:";
    getline(cin,author);
    cout << "Title:" << title << endl;
    cout << "Author:" << author << endl; 
    return 0;
}