#include <iostream>
using namespace std;
int main(){
int a, b;
cout << "Enter your favorite number " << endl;
cin >> b;
cout << "Enter another number you love " << endl;
cin >> a;
if(a<b){
cout << "Your first number was larger " << endl;
cout << "Their diffrent is: " << b-a << endl;
}
system("pause");
return 0;
}
Was there something you wanted?