#include /* this is the start of a longer comment * and the comment continues until i type * another special pair of characters */ int main() { // the next 3 lines of code print mike's name in a box. cout << "\xc9\xcd\xcd\xcd\xcd\xcd\xcd\xbb" << endl; cout << "\xba MIKE \xba" << endl; cout << "\xc8\xcd\xcd\xcd\xcd\xcd\xcd\xbc" << endl; // the next 4 lines of code do some basic math. cout << "4 + 3 = " << 4+3 << endl; cout << "4 * 3 = " << 4*3 << endl; cout << "4 / 3 = " << 4./3. << endl; cout << "4 - 3 = " << 4-3 << endl; }