#include using namespace std; int main() { int count = 10; do { cout << "Hello World\n"; count++; } while (count < 1); }