fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int moj_wiek = 100;
  7.  
  8. if(moj_wiek >= 18)
  9. cout << "jestem pełnoletni" << endl;
  10. else
  11. cout << "jestem dzieckiem" << endl;
  12.  
  13. cout << "I dobrze mi z tym" << endl;
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
jestem pełnoletni
I dobrze mi z tym