fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. for(int i=0; i<=250; i++)
  6. {
  7. if(i%25==0&&i<250)
  8. cout<<(i/25)*111<<endl;
  9. }
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 5528KB
stdin
Standard input is empty
stdout
0
111
222
333
444
555
666
777
888
999