fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int a,b;
  7. cout <<"vnesi go prviot broj"<<endl;
  8. cin>>a;
  9. cout <<"vnesi go vtoriot broj"<<endl;
  10. cin>>b;
  11. if (a!=b)
  12. cout<<"iskazot e tocen 1"<<endl;
  13. else
  14. cout<<"iskazot ne e tocen 0"<<endl;
  15. return 0;
  16. }
  17.  
  18.  
Success #stdin #stdout 0s 5636KB
stdin
3
3
stdout
vnesi go prviot broj
vnesi go vtoriot broj
iskazot ne e tocen 0