// Input two numbers print out in order #include using namespace std; int main(){ int num1,num2,temp; //temp will store one of the numbers to swap cout<<"Enter a number:"; cin>>num1; cout<<"Enter another number:"; cin>>num2; if (num1 > num2) { //swap temp=num1; num1=num2; num2=temp; } //the numbers are now in order cout<<"The smaller number is "<