// -*- mode: c++ -*-
// $Id: hello.g++,v 1.3 2001/06/20 03:20:02 doug Exp $
// http://www.bagley.org/~doug/shootout/

#include <iostream>

using namespace std;

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