#include using namespace std; int main(void) { int i=10; do { cout << i << endl; i = i+1; } while(i<10); return 0; }