fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. { int x=10;
  7. int age;
  8. cout<<"enter your age";
  9. cin>>age;
  10. if(age<18)
  11. {
  12. cout<<"you are not eligible";
  13. return 0;
  14. }
  15.  
  16. cout<<"welcome\n";
  17. return 0;
  18. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
enter your agewelcome