#include
using namespace std; int main() { int i = 0; while (i < 5) { cout << i << "\n"; i++; } return 0; }
0
1
2
3
4