C++程序  |  11行  |  126 B

#include <new>
#include <exception>
#include <cstdio>

int foo(void)
{
    ::printf("Hello ");
    throw std::exception();
}