#include #include using namespace std; int main() { int i {0}; while (i<30) { cout << i << "\n"; ++i; } return EXIT_SUCCESS; }