#include <iostream>
using namespace std;
int main() {
int i = 10;
do {
cout << "i is " << i << "\n";
i++;
} while (i < 5);
return 0;
}