RM := rm -rf
OBJS := Problem.o Solution.o

all: checker

checker: $(OBJS)
	g++ $(OBJS) main.cpp -o $@
	
clean:
	$(RM) checker $(OBJS)

	
	