fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. signed int a;
  6. signed int b;
  7.  
  8. a = 3;
  9. b = -6;
  10.  
  11. while(a<0)
  12. {
  13. a+=25;
  14. }
  15.  
  16. cout<<a;
  17.  
  18. cout<<"\n";
  19.  
  20. while(b<0)
  21. {
  22. b+=25;
  23. }
  24.  
  25. cout<<b;
  26.  
  27. return 0;
  28. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
3
19