fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b;
  6.  
  7. cout << "Vnesi dva broja: ";
  8. cin >> a >> b;
  9. if (a > b)
  10. cout << "Pogolem e brojot "<<a<<endl;
  11. else
  12. cout << "Pogolem e brojot "<<b<<endl;
  13.  
  14. system ("PAUSE");
  15. return 0;
  16. }
Success #stdin #stdout #stderr 0s 5316KB
stdin
4
144
stdout
Vnesi dva broja: Pogolem e brojot 144
stderr
sh: 1: PAUSE: not found