// example1.cc
// CMSC15100-2
// Winter 2005
// A first program in C++

#include <iostream>

using namespace std;

int main()
{
  cout << "Hello world" << endl;
  return 0;
}
