What's happening is that somewhere there is a file containing the actual implementation code for the constructor function Game(int width, int height, std::string title);, and you aren't building (or not linking) that code (which I'd guess lives in a file named Game.cpp)
How are you building this? What command line or IDE?
I have moved the main.o of output to the end of the line. It throws the same error. Also in the error, the function takes 5 params, but I defined it to have 3 (I suppose that it is normal using a <string> param).
You need to add the sfml libraries to the link line. Put all of the following that you actually need (e.g., if you aren't using the network subsystem don't include that library) right before -o ouput
You'll need to add options to the g++ command, to link against those libraries. You'll need to supply the names of those libraries, and the paths to the directories that contain those libraries.