#include <iostream>
using namespace std;
struct books {
string name;
string author;
int year;
int pages;
};
int main() {
struct books book;
cout << "Enter name of the book:";
cin >> book.name;
cout << "Enter author of the book:";
cin >> book.author;
cout << "Enter year of the book:";
cin >> book.year;
printf("Enter number of pages in the book:");
cin >> book.pages;
cout << "Book name: " << book.name << endl;
cout << "Book author: " << book.author << endl;
cout << "Book year: " << book.year << endl;
cout << "Book number of pages: " << book.pages << endl;
return 0;
}