#include <iostream>
int main(int argc, char ** argv)
{
    std::cout << "hello, world" << std::endl;
    return 0;
}
// vim: set sw=4 ts=4 sts=4 et:
