CXXFLAGS=-Wall -g -std=c++0x
all: number
clean:
	rm -vf number

test: all
	./number
