fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a = 200, b = 110;
  7. while(a >= b) {
  8. a = a-1;
  9. b = b+1;
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5536KB
stdin
Standard input is empty
stdout
Standard output is empty