/**
 * HelloWorld.cpp
 *
 * Our very first C++ program!
 * Note the use of doc-comments in JavaDoc-style, compatible with Doxygen.
 *
 * @author Sean Ho
 */

#include <iostream>
using namespace std;

int main() {
  cout << "Hello, World! I am "
   << hex << 15 << " Today!" << endl;
}

