# include <stdio.h>
# include <iostream>
using namespace std;
int main()
{
int a,b,c;
while (true)
{
cout<< " enter ur first digit"<< endl;
cin>> a;
cout<< "enter ur second digit" << endl;
cin >> b;
cout << " ur ans is "<< (a-b) <<endl;
continue ;
break;}
scanf ("%d%",&c);
return 0;
}
this way i can continue the program infinite times but how can i make the user decide if he wants to continue or wants to quit