#include using namespace std; int main() { int small, big, tmp; cout << "Enter two different integers separated by a space.\n"; cin >> small >> big; if ( big < small ) { tmp = big; big = small; small = tmp; } cout << "The greater number is " << big << " and lesser number is " << small << endl; cout << "\n\n"; system( "PAUSE" ); return( 0 ); }