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