#include <stdio.h> #include <string.h> #undef DEBUG #if defined(DEBUG) #define debug(fmt, ...) printf(fmt, ##__VA_ARGS__) #else #define debug(fmt, ...) #endif int dfs(int *num, int *flag, int result, char *com, int *order) ; int main() { char str[24]; gets(str); debug("%s\n",st...