#include using namespace std; int main() { int count = 0; do { cout << "I'm the greatest!" << endl; count++; } while ( count < 10); return 0; }