fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b;
  6. cin >> a >> b;
  7. if(a >= b){
  8. cout << "a is greater than or equal to b";
  9. }
  10. else cout << "a is smaller than b";
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
2 3
stdout
a is smaller than b