// demoNums.cc   Play with number representatation
// P. Conrad CISC181h 02/16

#include <iostream>
using namespace std;

int main(void)
{

  unsigned int bill = 0x80000000; // 0x means: Hexadecimal number

  // 0x80000000 in binary would be 1000 0000 0000 0000 0000 0000 0000 0000 


  cout << "bill's unsigned int is " << bill << endl;

  int spencer = 0x80000000; // 

  cout << "spencer's int is " << spencer << endl;

  unsigned int tom = 0xFFFFFFFF; // 0x means: Hexadecimal number

  // 0xFFFFFFFF0 in binary would be 1111 1111 1111 1111 1111 1111 1111 1111 


  cout << "tom's unsigned int is " << tom << endl;

  int nikhil = 0xFFFFFFFF; // 

  cout << "nikhil's int is " << nikhil << endl;


  return 0;
}


