#include <string>

using namespace std;

struct User {
	string name;
	int age;
	string login;
	string mobileNo;
	string password;
};

struct House {
	string lot;
	string propertyName;
	int totalBedrooms;
	int totalBathrooms;
	double price;
	int status; //1 - available, 2 - sold
	string buyerName;
};
