#include <iostream>
using namespace std; // consider removing this line in serious projects

class Game{
	private:
		int goals;

	public:
		Game();
		int getGoals();
		void incrementGoals();
};

void Game::incrementGoals(){
	goals++;
}

Game::Game(){
	goals = 0;
}

int Game::getGoals(){
	return goals;
}

int main() {
	Game football;
	
	cout << "Number of goals at start: " << football.getGoals() << endl;
	
	football.incrementGoals();
	football.incrementGoals();
	
	cout << "GAME... Final score" << football.getGoals() << endl;
	
}