#include <iostream>   
#include <string>

using namespace std;

string something;
bool not_empty;

int main()
{

  cout << "Enter something if you want: " << endl;

  getline(cin,something);

  not_empty=(something != "");

  cout << endl << not_empty << endl;
  return 0;
}
