#!/bin/sh

if [ $# -ne 1 ]; then
	echo "Usage: $0 <tower height>"
	exit 1;
fi

cpp -P -DN=$1 hanoi
