#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; system("PAUSE"); // prevent the console window from closing return 0; }