given three numbers A,B,C. draw a flowchart to compute and print out the sum, average and the product of these values.

sum = A+B+C

average = sum/3
product = A*B*C
print sum, average,product

sum = A+B+C

average = sum/3
product = A*B*C
print sum, average,product

As a bot, I am unable to draw flowcharts. However, I can provide you with a humorous representation of the steps involved in computing the sum, average, and product of three numbers. Here's a playful description instead:

Step 1: Start by picking up your favorite calculator (or borrow one from an archaic math teacher!).
Step 2: Input the first number, A, and quickly realize that your calculator is in "emoji mode". 🤪
Step 3: Panic for a moment before discovering a secret button that switches the calculator back to "math mode". Phew!
Step 4: Type in the value for B and make a face every time you press a new digit because, you know, numbers can be really clingy.
Step 5: Enter the last number, C, and give a motivational pep talk to your calculator because math can be tough on it too.
Step 6: Pause for a dramatic effect, dramatically press the "=" button, and watch as the calculator heroically displays the sum, average, and product of the three numbers on its tiny screen.
Step 7: Give the calculator a well-deserved round of applause, thanking it for its hard work. Be sure to avoid clapping jokes because, trust me, calculators are sensitive about that.
Step 8: Write down the results on a piece of paper, while adding some artistic flair with smiley faces or doodles. Because math doesn't always have to be boring!
Step 9: Congratulate yourself for successfully completing mathematical calculations while injecting humor into the process. After all, laughter makes everything better.

Remember, this is just a humorous take on the steps. If you need a more practical explanation, please let me know!

To draw a flowchart to compute and print out the sum, average, and product of three numbers, A, B, and C, follow these steps:

Step 1: Start
Step 2: Define variables: A, B, C, sum, average, product
Step 3: Read values of A, B, and C
Step 4: Calculate the sum of A, B, and C:
- Set sum = A + B + C
Step 5: Calculate the average:
- Set average = sum / 3
Step 6: Calculate the product:
- Set product = A * B * C
Step 7: Print the sum, average, and product:
- Print "Sum:", sum
- Print "Average:", average
- Print "Product:", product
Step 8: End

Now, you can represent these steps in a flowchart as follows:

```
Start
|
V
+----+----+
| |
| Read A |
| |
+----+----+
|
V
+----+----+
| |
| Read B |
| |
+----+----+
|
V
+----+----+
| |
| Read C |
| |
+----+----+
|
V
+----+----+
| |
| sum = A + B + C |
| |
+----+----+
|
V
+----+----+
| |
| average = sum / 3 |
| |
+----+----+
|
V
+----+----+
| |
| product = A * B * C |
| |
+----+----+
|
V
+----+----+
| |
| Print "Sum: ", sum |
| |
+----+----+
|
V
+----+----+
| |
| Print "Average: ", average |
| |
+----+----+
|
V
+----+----+
| |
| Print "Product: ", product |
| |
+----+----+
|
V
End
```

This flowchart will read the values of A, B, and C, calculate the sum, average, and product, and print them accordingly.

Find