fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. int a;
  5. cout<<"vnesete go brojot"<<endl;
  6. cin>>a;
  7.  
  8.  
  9. if(a/2)
  10. cout<<"brojot e negativen"<<endl;
  11. else
  12. cout<<"brojot e pozitiven"<<endl;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5288KB
stdin
09
stdout
vnesete go brojot
brojot e negativen