Result Size: 625 x 571
x
 
#include <iostream>
using namespace std;
int main() {
  int i = 0;
  while (i < 5) {
    cout << i << "\n";
    i++;
  }
  return 0;
}
0
1
2
3
4