you’re not pulling in the C++ standard library
if you're on macOS, do this :
clang++ Hello.cpp -o hello ./hello
or if you’ve installed GCC via homebrew, do this :
g++-13 Hello.cpp -o hello ./hello