fork download
  1. #include <iostream>
  2. int main()
  3. { using namespace std;
  4. int age;
  5. cout<<"enter your age"<<endl;
  6. cin>> age;
  7. if (age >=65)
  8. cout<<" you are becoming old" <<endl;
  9. else
  10. cout << "you are not old"<<endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 15232KB
stdin
12
stdout
enter your age
you are not old