fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a;
  7. cin >> a;
  8. if (a>0)
  9. cout << "DODATNIA" << endl;
  10. if (a=0)
  11. cout << "RÓWNA ZERO" << endl;
  12. if (a<0)
  13. cout << "UJEMNA" << endl;
  14.  
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Standard output is empty