Title: Problem Author: Anonymous Pastebin link: http://pastebin.com/c5Hp47XJ First Edit: Friday 25th of October 2013 07:30:44 PM CDT Last Edit: Friday 25th of October 2013 07:30:44 PM CDT //I'm trying when the programm #include #include   using namespace std;   int addition (int a, int b) {  int g;  g=a+b;  return (g);   }   int subtraction (int c, int d) {  int e;  e=c-d;  return (e); }   int main() { call:  int z;  int y;  int x;  int v;  int n;  int o;  string mystring;      cout << "Hello, what is your name? ";  getline (cin, mystring);  cout << "Hello " << mystring << ".\n";    cout << "Enter a number \n";  cin >> x;  cout << "Enter another number \n";  cin >> y;  cout << "Enter the final number \n";  cin >> z;    v = z+y+x;    while (v>0){     cout << v << ", ";     v--;  }  cout << "End of while loop\n";     n=addition(5,3);   o=subtraction(5,3);    do{     cout << "enter in a number\n";     cin >> v;     cout << "The result is " << v+o << ".\n";    } while (v+o!= 50);    goto call;    return 0; }