fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int broj;
  6. cin>>broj;
  7. if (broj >= 1)
  8. {
  9. cout<<"brojot e pozitiven"<<endl;
  10. }
  11. else
  12. {
  13. cout<<"brojot ne e pozitiven"<<endl;
  14. }
  15. return 0;}
  16.  
Success #stdin #stdout 0s 5320KB
stdin
-203
stdout
brojot ne e pozitiven