#include <iostream>
#include <unistd.h>
using namespace std;
int main(void)
{
   bool x = true;
   cout << x << ", " 
        << boolalpha << x << ", "
        << noboolalpha << x
        << endl;
   return 0;
}
