#include <iostream>
using namespace std;
int main(void)
{
   cout << -1 << ", " << 0 << ", " << 1 << endl;
   cout << showpos; 
   cout << -1 << ", " << 0 << ", " << 1 << endl;
   cout << noshowpos;
   cout << -1 << ", " << 0 << ", " << 1 << endl;
   return 0;
}
