#include <iostream>
usingnamespace std;
int a;
int main(){
int b;
int c;
int d;
cout << "enter a number: ";
cin >> a;
cout << "enter a second number: ";
cin >> b;
c=a*b-a;
cout << "the sum is: " << c << "\n";
if (c>100){
cout << "what the fuck? enter another number: ";
cin >> d;
cout << "you wrote: " << d << "\n";
system ("pause");
}else{
cout << "you lose bitch \n";
system ("pause");
}
}
I took the code i made during a tutorial and expanded upon it. i made it in Dev-C++.