// This program has variables of several of the integer types. #include using namespace std; int main() { int checking; unsigned int miles; long days; checking = -20; miles = 4276; days = 187000; cout << "We have made a long journey of " << miles; cout << " miles.\n"; cout << "Our checking account balance is " << checking; cout << "\nAbout " << days << " days ago Columbus "; cout << "stood on this spot.\n"; return 0; }