/****************************************************************************** * This program prints "I think I Can!" * * Copyright © 2016 Richard Lesh. All rights reserved. *****************************************************************************/ #undef NDEBUG #include #include using namespace std; int main(int argc, char **argv) { cout << "I think I can!" << endl; cout << "I think I can!" << endl; cout << "I think I can!" << endl; cout << "I think I can!" << endl; cout << "I think I can!" << endl; return 0; }