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