fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int broj1;
  6. cout<<"vnesi eden broj"<<endl;
  7. cin>>broj1;
  8. if (broj1%2==0)
  9. cout<<"brojot e paren 112"<<endl;
  10. else
  11. cout<<"brojot e neparen"<<endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5320KB
stdin
108
stdout
vnesi eden  broj
brojot e paren 112