Join our community
#include <iostream> using namespace std; int main() { int a = 0; do{ cout << "How lewd is too lewd?" << a << endl; a = a +1; } while( a < 70 ); return 0; }