#include int main() { int i; for (i = 0; i < 9; i++) if (i == 5) putchar('-'); else putchar("rwx"[i % 3]); putchar('\n'); return(0); }