#include int isdigit(int c) { return ('0' <= c && c <= '9'); }