#include #include using namespace std; int main() { short int m = 0; int n = 0; cout << "short \t\t long" << endl; for (int i=0; i<100; i++) { cout << m << "\t\t" << n << endl; m = m - 10000; n = n - 10000; } return 0; }