all: arithmos.exe

arithmos.exe : arithmos.c
	gcc -Wall -g arithmos.c -o arithmos.exe

demo      : arithmos.exe 
	./arithmos.exe 67896789 987554321 10
	bc <<< " 67896789 + 987554321 "
	bc <<< " 67896789 * 987554321 "

joli :
	indent -kr *.c
