Data Types C++ Tutorial

#include 
int main()
{
   using std::cout;
   using std::endl;
   unsigned short int smallNumber;
   smallNumber = 65535;
   cout << "small number:" << smallNumber << endl;
   smallNumber++;
   cout << "small number:" << smallNumber << endl;
   smallNumber++;
   cout << "small number:" << smallNumber << endl;
   return 0;
}