fork download
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a,b;
  8. cin>>a,b;
  9. cout<< "Vnesi dva razlicni broja"<<endl;
  10. if (a<b)
  11. cout<<"Brojot "<<a<< " e pomal od " <<b<<endl;
  12. else
  13. cout<< "Brojot " <<b<< " e pogolem od " <<a<<endl;
  14.  
  15.  
  16.  
  17.  
  18. system ("PAUSE");
  19. return 0;
  20. }
Success #stdin #stdout #stderr 0.01s 5288KB
stdin
6 4
stdout
Vnesi dva razlicni broja
Brojot 0 e pogolem od 6
stderr
sh: 1: PAUSE: not found