###### tags: `I2P(I)Hu2023`
# 13982 - The boy wants a cat wants a tree
> by schdoel
## Brief
Print a figure of a tree and cat
## Solution
Follow the shape of the description
dont forget to add :
- extra '\' to print '\'
- extra '\' to print '"'
## Reference Code
```cpp=
#include <stdio.h>
int main(void) {
printf(" /\\\n");
printf(" / \\\n");
printf(" /- -\\\n");
printf(" / \\\n");
printf(" /- -\\\n");
printf(" / \\\n");
printf("/------------\\\n");
printf(" | |\n");
printf(" |__|\n");
printf("\n");
printf(" ^ ^\n");
printf("(=-w-=)\n");
printf(" \" \"\n");
return 0;
}
```